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