blob: 94e47ccd3e0a2b0f7c2948b2dbed1405561aee87 [file] [log] [blame]
Douglas Gregor9390e9c2012-02-09 01:26:17 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wno-unused-value -std=c++11 %s
Douglas Gregordb0b9f12011-08-04 15:30:47 +00002
3class 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}}
Richard Smithc084bd282013-02-02 02:14:45 +000013 [&this] {}; // expected-error {{cannot take the address of an rvalue of type 'C *'}}
Douglas Gregor656bc622012-02-09 08:26:42 +000014 [] {};
15 [=] (int i) {};
16 [&] (int) mutable -> void {};
17 [foo,bar] () { return 3; };
18 [=,&foo] () {};
19 [this] () {};
Richard Smith21b3ab42013-05-09 21:36:41 +000020
21 [foo(bar)] () {}; // expected-error {{not supported}}
22 [foo = bar] () {}; // expected-error {{not supported}}
23 [foo{bar}] () {}; // expected-error {{not supported}}
24 [foo = {bar}] () {}; // expected-error {{not supported}}
25
26 [foo(bar) baz] () {}; // expected-error {{called object type 'int' is not a function}}
27
28 // FIXME: These are some appalling diagnostics.
29 [foo = bar baz]; // expected-error {{missing '['}} expected-warning 2{{receiver type 'int'}} expected-warning 2{{instance method '-baz'}}
Douglas Gregordb0b9f12011-08-04 15:30:47 +000030 }
31
32};
33