2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / interface2.h
blobdc0590472303af5859b4e1f35ac189f2b0e36199
1 #pragma interface
3 template<class T>
4 struct C
6 explicit C(const T& t) : a(t) { }
7 virtual ~C() { }
8 T a;
9 };