blob: 33100069eadf94c30455a714413a81f71b40790c [file] [log] [blame]
// { dg-options "-fpermissive -w" }
struct A {
static void g(int);
};
struct S {
static int i;
friend void f(int = i);
friend void A::g(int = i);
};