URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [ext/] [complit2.C] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/12726
// Origin: Vladimir Zidar <mr_W@mindnever.org>
// Reduced version: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
// { dg-options "" }
struct A
{
A();
A(const A&);
A(int);
};
struct B
{
A a;
};
void foo()
{
B b;
b = (B){0};
}
Go to most recent revision | Compare with Previous | Blame | View Log