Reverting merge from trunk
[official-gcc.git] / gcc / testsuite / g++.dg / abi / abi-tag5.C
blobde5580239dd76fbcd216d865e917d07cb5e2685a
1 // { dg-options -Wabi-tag }
3 struct __attribute__ ((abi_tag ("foo"))) A { };
4 template <class T> struct B: T { };
6 B<A> b;