PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr32114.C
blob0ae684ce93828e5741c5d35e3e5ccfc66f83c325
1 // { dg-do compile { target c++11 } }
2 template<typename ...T> struct A
4   typedef typename T::X Y; // { dg-error "not expanded|T" }
5 };
7 A<int> a;