URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [parse/] [ambig4.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/20293
namespace hide { // { dg-error "hide" }
int k;
}
namespace {
int i;
namespace hide { // { dg-error "hide" }
int j;
}
}
void F(int) {}
int main() {
F(hide::j); // { dg-error "ambiguous" }
}
Go to most recent revision | Compare with Previous | Blame | View Log