template12.C   [plain text]


// Testcase for 'this is a type' syntax.
// Build don't link:

struct B {
  typedef int A;
};

template <class T> struct Y {
  void f() {
    typename T::A *d;
  }
};

template class Y<B>;