simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-shift2.C
blob9b3490a66a712fb0cfa476b9262ce61ebec53d7c
1 // PR c++/94955
2 // { dg-do compile { target c++11 } }
4 struct S {
5   static constexpr char foo() { return 10; }
6 };
8 short int
9 fn (short int e)
11   return e >> S::foo();