OSDN Git Service

PR debug/43942
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / pr32114.C
1 // { dg-options "-std=c++0x" }
2 template<typename ...T> struct A
3 {
4   typedef typename T::X Y; // { dg-error "not expanded|T" }
5 };
6
7 A<int> a;