URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [other/] [ptrmem5.C] - Rev 826
Compare with Previous | Blame | View Log
// PR 14123
struct a
{
int x[8];
};
int main()
{
int a::*n[8];
n = &a::x; // { dg-error "int \\(a::\\*\\)" }
}