FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / crash27.C
blob62acbe03e1991553f838354fa628361c9d8de04c
1 // Build don't link: 
2 // GROUPS passed old-abort
3 class First {
4 public:
5   First(const First& a);
6 };
8 class Second {
9   int i;
10   First f;
11 public:
12   ~Second() {}
13   Second func();
16 void foo()
18   extern Second x;
19   x = x.func();