libstdc++: Fix std::chrono::parse for TAI and GPS clocks
[official-gcc.git] / gcc / testsuite / g++.dg / ext / label13.C
blob8b39716a508c347d94bdc88d4cb2c766d712153a
1 // PR c++/41090
2 // { dg-do run }
3 // { dg-options "" }
4 // { dg-require-effective-target indirect_jumps }
6 int i;
7 struct C
9   C();
12 C::C()  // { dg-bogus "can never be copied" }
14   static void *labelref = &&label;
15   goto *labelref;
16  label: i = 1;
19 int main()
21   C c;
22   return (i != 1);