aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/abi-tag5.C
blob: 95e367ef935fef0eaa39a14b3828d8e582648e5b (plain)
1
2
3
4
5
6
7
// { dg-options -Wabi-tag }
// { dg-final { scan-assembler "_Z1f1BI1AB3fooE" } }

struct __attribute__ ((abi_tag ("foo"))) A { };
template <class T> struct B: T { };

void f(B<A>) {}