summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/abi-tag5.C
blob: de5580239dd76fbcd216d865e917d07cb5e2685a (plain)
1
2
3
4
5
6
// { dg-options -Wabi-tag }

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

B<A> b;