OSDN Git Service

2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / typename4.C
1 struct B { template <typename U> struct C; };
2 template <typename T> struct A { typedef typename T::C V; }; // { dg-error "not a type" }
3 void f () { A<B>::V p; } // { dg-message "instantiated" }