FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / template2.C
blobbb7c1dced714a15c52951b983a1ef73072c12704
1 //Build don't link:
2 //Inheritance from templates which are namespace members
3 namespace foo {
5   template <class T>
6   struct x {
7     x(){}
8   };
12 class y : public foo::x<int> {};
14 y r;