blob: 7bcfe3ae70bcea8b057e55ca13a22cd709491fae [file] [log] [blame]
// PR c++/58566
// { dg-do compile { target c++11 } }
struct A
{
int foo()
{
[this]{ return foo; }; // { dg-error "invalid use of member function|cannot convert" }
return 0;
}
};