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/] [warn/] [Wextra-1.C] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options "-Wextra" }
struct T {
// If the implicitly-declared default constructor for "T" is
// required, an error will be issued because "i" cannot be
// initialized. And, this class is not an aggregate, so it cannot
// be brace-initialized. Thus, there is no way to create an object
// of this class. We issue a warning with -Wextra.
const int i; // { dg-warning "const" }
private:
int j;
};
Go to most recent revision | Compare with Previous | Blame | View Log