2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / empty2.C
blob86caa5ccb0f182a6f0ab8dd0c2832487dd3ed7a3
1 // PR c++/46160
2 // { dg-do compile }
4 struct S
6   enum E { A };
7 } s;
8 volatile S t;
10 void f (S::E);
12 void
13 g ()
15   volatile S *p = &s;
16   f (p->A);
17   f (t.A);