blob: b2a75f2edbb6fec8a03fcf59b30402644b651491 [file] [log] [blame]
Douglas Gregordcffcbf2012-02-09 01:26:17 +00001// RUN: %clang_cc1 -fsyntax-only -verify -Wno-unused-value -std=c++11 %s
Douglas Gregorae7902c2011-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 Smith3fa3fea2013-02-02 02:14:45 +000013 [&this] {}; // expected-error {{cannot take the address of an rvalue of type 'C *'}}
Douglas Gregorb326ca82012-02-09 08:26:42 +000014 [] {};
15 [=] (int i) {};
16 [&] (int) mutable -> void {};
17 [foo,bar] () { return 3; };
18 [=,&foo] () {};
19 [this] () {};
Richard Smith0a664b82013-05-09 21:36:41 +000020
Richard Smith0d8e9642013-05-16 06:20:58 +000021 [foo(bar)] () {};
22 [foo = bar] () {};
23 [foo{bar}] () {}; // expected-error {{<initializer_list>}}
24 [foo = {bar}] () {}; // expected-error {{<initializer_list>}}
Richard Smith0a664b82013-05-09 21:36:41 +000025
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 Gregorae7902c2011-08-04 15:30:47 +000030 }
31
32};
33