simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr44.C
blob9ceba14fc98017f3bedd69e6c2af9cdf581f59fc
1 // PR c++/91979
2 // { dg-do compile { target c++11 } }
3 // { dg-final { scan-assembler "_Z3fooILPv0EEvPN9enable_ifIXeqT_LDnEEvE4typeE" } }
5 template <bool, typename T = void>
6 struct enable_if {};
8 template <typename T>
9 struct enable_if<true, T> { typedef T type; };
11 template <void *P>
12 void foo(typename enable_if<P == nullptr>::type* = 0) {}
14 template void foo<(void *)0>(void *);