simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / ptrmem-cst-arg1.C
blob38b3e24241c4aaa466d3c0c2ba41895d495ffdd3
1 // Origin PR c++/51476
2 // { dg-do compile { target c++11 } }
4 template<int> struct A {};                                                               
5 struct B
7     int i;
8     A<&B::i> a; // { dg-error "could not convert" }
9 };