* arm.c (FL_WBUF): Define.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / template2.C
blobc88293e4330d4ea4eeff89d9d8cb406c7b9d930c
1 // { dg-do assemble  }
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;