blob: 47fe0556519e8072060ef5e675c1235323ce6964 [file] [log] [blame]
// { 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];
}
};