blob: 4c47725c5362f4f35b779cd52ba674e731eec872 [file] [log] [blame]
// PR c++/60642
template<typename T>
class __attribute((abi_tag("foo"))) test{ };
template class __attribute((abi_tag("foo"))) test<int>; // { dg-warning "attribute" }
void f(test<char>*) {}
// { dg-final { scan-assembler "_Z1fP4testB3fooIcE" } }