aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/objcxx0x-lambda-expressions.mm
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-08-04 15:30:47 +0000
committerDouglas Gregor <dgregor@apple.com>2011-08-04 15:30:47 +0000
commitae7902c4293d9de8b9591759513f0d075f45022a (patch)
tree23abb7b0681efb30fe972f0562d0ec54c03f1e30 /test/Parser/objcxx0x-lambda-expressions.mm
parentedc2220d6986e302354dbc86cdeb4764ea5ce810 (diff)
Parsing of C++0x lambda expressions, from John Freeman with help from
David Blaikie! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136876 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Parser/objcxx0x-lambda-expressions.mm')
-rw-r--r--test/Parser/objcxx0x-lambda-expressions.mm26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/Parser/objcxx0x-lambda-expressions.mm b/test/Parser/objcxx0x-lambda-expressions.mm
new file mode 100644
index 0000000000..d100e2e488
--- /dev/null
+++ b/test/Parser/objcxx0x-lambda-expressions.mm
@@ -0,0 +1,26 @@
+// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
+
+class C {
+
+ void f() {
+ int foo, bar;
+
+ // fail to parse as a lambda introducer, so we get objc message parsing errors instead
+ [foo,+] {}; // expected-error {{expected expression}}
+
+ []; // expected-error {{expected body of lambda expression}}
+ [=,foo+] {}; // expected-error {{expected ',' or ']' in lambda capture list}}
+ [&this] {}; // expected-error {{address expression must be an lvalue}}
+ [] {};
+ [=] (int i) {};
+ [&] (int) mutable -> void {};
+ // FIXME: this error occurs because we do not yet handle lambda scopes
+ // properly. I did not anticipate it because I thought it was a semantic (not
+ // syntactic) check.
+ [foo,bar] () { return 3; }; // expected-error {{void function 'f' should not return a value}}
+ [=,&foo] () {};
+ [this] () {};
+ }
+
+};
+