Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / typename4.C
blobadd95156cec2a8a865fafafb1497fb7ccf474a99
1 struct B { template <typename U> struct C; };
2 template <typename T> struct A { typedef typename T::C V; }; // { dg-error "" }
3 void f () { A<B>::V p; } // { dg-error "" }