FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / inline7.C
blob0a1d373d44e7cf8443070c5f4aa4bbc554080ffe
1 // Build don't link: 
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;