blob: 7ead1cb86b44f2c68a73578ba9b9ce230524af57 [file] [log] [blame]
// { dg-options "-Wabi-tag" }
template<class T>
struct __attribute ((__abi_tag__("cxx11"))) list // { dg-message "list" }
{ };
struct X { // { dg-warning "ABI tag" }
list<int> l; // { dg-message "X::l" }
};