Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / abi-tag8.C
blob7ead1cb86b44f2c68a73578ba9b9ce230524af57
1 // { dg-options "-Wabi-tag" }
3 template<class T>
4 struct __attribute ((__abi_tag__("cxx11"))) list // { dg-message "list" }
5 { };
7 struct X {                      // { dg-warning "ABI tag" }
8   list<int> l;                  // { dg-message "X::l" }
9 };