Douglas Gregor | dcffcbf | 2012-02-09 01:26:17 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -Wno-unused-value -std=c++11 %s |
Douglas Gregor | ae7902c | 2011-08-04 15:30:47 +0000 | [diff] [blame] | 2 | |
| 3 | class C { |
| 4 | |
| 5 | void f() { |
| 6 | int foo, bar; |
| 7 | |
| 8 | // fail to parse as a lambda introducer, so we get objc message parsing errors instead |
| 9 | [foo,+] {}; // expected-error {{expected expression}} |
| 10 | |
| 11 | []; // expected-error {{expected body of lambda expression}} |
| 12 | [=,foo+] {}; // expected-error {{expected ',' or ']' in lambda capture list}} |
| 13 | [&this] {}; // expected-error {{address expression must be an lvalue}} |
Douglas Gregor | b326ca8 | 2012-02-09 08:26:42 +0000 | [diff] [blame] | 14 | [] {}; |
| 15 | [=] (int i) {}; |
| 16 | [&] (int) mutable -> void {}; |
| 17 | [foo,bar] () { return 3; }; |
| 18 | [=,&foo] () {}; |
| 19 | [this] () {}; |
Douglas Gregor | ae7902c | 2011-08-04 15:30:47 +0000 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | }; |
| 23 | |