PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / attr3.C
blob57fa60e130e9090d6f2325100b11c610be2494ce
1 // PR c++/39219
3 enum __attribute__ ((deprecated)) E { e };
4 struct S { enum __attribute__ ((deprecated)) F { f = e }; };
6 int main () {
7     E x;        // { dg-warning "'E' is deprecated" }
8     x = e;
10     S::F y;     // { dg-warning "'F' is deprecated" }
11     y = S::f;
13     return x + y;