blob: 07ddd0863de290cb52230fca77d70c62840c78f4 [file] [log] [blame]
// PR c++/54277
// { dg-do compile { target c++11 } }
struct Used
{
void foo() { }
};
template <typename>
struct S
{
Used x;
void bar()
{
auto f = [this] { x.foo(); };
f();
}
};