(root)/
gcc-13.2.0/
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