[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / attrib38.C
blobbe3c7f2ba1ad7e99751c974dae09d3780c7ebe53
1 // PR c++/36625
3 template <int N>
4 struct A {
5   struct S { short f[3]; } __attribute__ ((aligned (N)));
6 };
8 int main ()
10   A<4>::S s;