blob: 759584af8d21a2ef7c77c8a4a37014a290695574 [file] [log] [blame]
// PR c++/85141
// { dg-options "-w -fpermissive" }
struct A
{
static int foo();
};
void bar(int i)
{
i += A().foo;
}