blob: d44bec9494d49ff4aa538e8aa50539a046318a30 [file] [log] [blame]
// PR c++/56692
// { dg-require-effective-target c++11 }
struct Class {
void f () { }
static void f (int) { }
};
int main ()
{
[]{ Class::f(0); };
}