URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [pr18016.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */
/* { dg-options "-Wuninitialized -Winit-self" } */
class X {
int i;
X() : i(i) { } // { dg-warning "initialized with itself" }
X(int i) : i(i) { }
X(const X& x) : i(x.i) { }
};
// { dg-prune-output "In constructor" }
Go to most recent revision | Compare with Previous | Blame | View Log