FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / crash8.C
blobcadda2f4764ddd42adc3dec1e476a09b8eeec547
1 struct A {
2   A();
3   A(A);                         // ERROR - copy ctor must take reference
4 };
5 int main()
7   A a;
8   A b(a);                       // causes compiler segfault