blob: 1af2a95d8a67c7d94190ac03bf4c64d4f6293f60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// { dg-options "-std=c++0x" }
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;
}
|