simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr90598.C
blob0ee3fb189a6fe2533b325df286ee5c7c512cb05c
1 // PR c++/90598
2 // { dg-do compile { target c++11 } }
4 struct A {};
5 using B = decltype(A ().~A ());
6 template <typename T> struct C;
7 template <> struct C<void> {};
8 C<B> t;