blob: ac52bc3e463de81df112e0617a4f876cf7e623e9 [file] [log] [blame]
// PRMS id: 10912
struct A {
A() { i=10; };
int i;
};
struct B : public A {};
B b;
A f()
{
return b;
}
int main ()
{
A a = f ();
return a.i != 10;
}