URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [expr/] [crash2.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/14267
class foo {
public: static int& x;
};
int temp;
int& foo::x=temp;
int main() {
int x = 3;
&foo::x = x; // { dg-error "" }
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log