OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass18.C
1 // Build don't link:
2
3 template <class T> struct A {
4   template <class U> struct B;
5 };
6
7 template <class T> template <class U> struct A<T>::B { };
8
9 A<int>::B<int> b;