* c-common.c (catenate_strings): New.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / return3.C
blob4e60e39a0a99291d4108b2944b7dc884beccea75
1 // { dg-do run  }
2 // PRMS id: 10912
4 struct A {
5   A() { i=10; };
6   int i;
7 };
8 struct B : public A {};
9 B b;
11 A f()
13   return b;
16 int main ()
18   A a = f ();
19   return a.i != 10;