OSDN Git Service

PR c++/34774
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / opt / interface2.h
1 #pragma interface
2
3 template<class T>
4 struct C
5 {
6   explicit C(const T& t) : a(t) { }
7   virtual ~C() { }
8   T a;
9 };
10
11