blob: 232c56b46e181496e4f0e253787af881bfc8719b [file] [log] [blame]
// { dg-do run { target c++11 } }
int main() {
int i;
const char* s;
[=] () -> void { i; s; i; s; } ();
//[] () -> void { i; } (); // { dg-error: "`i' is not in scope" }
//[1] () -> void {} (); // { dg-error: "expected identifier" }
return 0;
}