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 on template argument" }
9 
10 template<typename T>
11 using B = A<__underlying_type(T) [[gnu::packed]]>; // { dg-warning "ignoring attributes on template argument" }
12