URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [friend1.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Origin: <matz@suse.de>
// PR c++/9970: In-class friend function definition after
// declaration lexical scope problem.
void f();
struct X
{
enum { k = 1 };
friend void f() {
char a[k];
}
};
Go to most recent revision | Compare with Previous | Blame | View Log