PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash73.C
blob5c3c87dad7a42379a535c2f041bd5407939fe4ae
1 // PR c++/34100
2 // { dg-do compile }
4 template<typename T> struct A
6   typedef typename T::X Y __attribute__((vector_size(8)));      // { dg-error "is not a class, struct" }
7 };
9 A<int> a;