2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / pr69113.C
blob2f8331e3f2bd653fc2c79fe337a4adc8ddbc4bbe
1 // PR c++/69113
2 // { dg-do compile }
3 // { dg-options "-fno-weak" }
5 struct foo
7   static void bar ()
8   {
9     struct baz
10     {
11       static void m ()
12       {
13         static int n;
14       }
15     };
16   }