]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/alias-decl-59.C
aarch64: Use bitreverse rtl code instead of unspec [PR115176]
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-59.C
1 // PR c++/80244
2 // { dg-do compile { target c++11 } }
3
4 template<typename>
5 struct A {};
6
7 template<typename T>
8 using B = A<__underlying_type(T) [[gnu::aligned(4)]]>; // { dg-warning "ignoring attributes applied to dependent type" }
9
10 template<typename T>
11 using B = A<__underlying_type(T) [[gnu::packed]]>; // { dg-warning "ignoring attributes applied to dependent type" }