Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / opt / interface2.C
blobe75e425893d9a066536fb49eb815922eee41b261
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 2 Jun 2005 <nathan@codesourcery.com>
4 // PR 21280
5 // Origin: Jens Maurer <jens.maurer@gmx.net>
7 #include "interface2.h"
9 struct A
11   A() { }
12   virtual ~A() { }
15 int main()
17   A a;
18   C<A> c(a);