2 // { dg-do compile { target c++11 } }
7 A __attribute__((deprecated)),
8 B __attribute__((deprecated("B"))),
16 A __attribute__((deprecated)),
17 B __attribute__((deprecated("B"))),
26 auto a1 = S<int>::E1::A; // { dg-warning "is deprecated" }
27 auto a2 = S<int>::E1::B; // { dg-warning "is deprecated" }
28 auto a3 = S<int>::E1::C; // { dg-warning "is deprecated" }
29 auto a4 = S<int>::E1::D; // { dg-warning "is deprecated" }
31 auto b1 = S2::A; // { dg-warning "is deprecated" }
32 auto b2 = S2::B; // { dg-warning "is deprecated" }
33 auto b3 = S2::C; // { dg-warning "is deprecated" }
34 auto b4 = S2::D; // { dg-warning "is deprecated" }