URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [warn/] [ctor-init-1.C] - Rev 844
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/11554
// { dg-options "-Wall" }
struct Y {
Y ();
int i1, i2; // { dg-warning "" }
};
Y::Y () : i2(0), i1(0) {} // { dg-warning "" }
Go to most recent revision | Compare with Previous | Blame | View Log