2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / inline7.C
blobc064c98c4fcba8667740a84fa5219fda72d01f86
1 // { dg-do assemble  }
2 // GROUPS passed inlining
3    template <class Type>
4 struct A {
5    typedef int X;
6    A() {}
7    virtual ~A() { }
8 };
9    template <class Type>
10 struct B : public A<Type> {
11    B() { }
12 }; 
13 B<int>::X x;