blob: f86c4b6d191895ae4a218cd8c3df2e9e5fae0340 [file] [log] [blame]
// PR c++/41920
// { dg-do compile { target c++11 } }
// { dg-options "-Wall -Wextra" }
int foo(int i)
{
auto bar = [=](){ return i; };
return bar();
}