blob: 1b9bf66fad9ae8bbf00a74a6baa7091498ca392b [file] [log] [blame]
Richard Smith6ee326a2012-04-10 01:32:12 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
2
3@interface X {}
4+ (X*) alloc;
5- (X*) init;
6- (int) getSize;
7- (void) setSize: (int) size;
8- (X*) getSelf;
9@end
10
11void f(X *noreturn) {
12 // An array size which is computed by a message send is OK.
13 int a[ [noreturn getSize] ];
14
15 // ... but is interpreted as an attribute where possible.
16 int b[ [noreturn] ]; // expected-warning {{'noreturn' only applies to function types}}
17
18 int c[ [noreturn getSize] + 1 ];
19
20 // An array size which is computed by a lambda is not OK.
21 int d[ [noreturn] { return 3; } () ]; // expected-error {{expected ']'}} expected-warning {{'noreturn' only applies}}
22
23 // A message send which contains a message send is OK.
24 [ [ X alloc ] init ];
25 [ [ int(), noreturn getSelf ] getSize ]; // expected-warning {{unused}}
26
27 // A message send which contains a lambda is OK.
28 [ [noreturn] { return noreturn; } () setSize: 4 ];
29 [ [bitand] { return noreturn; } () setSize: 5 ];
30 [[[[] { return [ X alloc ]; } () init] getSelf] getSize];
31
32 // An attribute is OK.
33 [[]];
Richard Smith534986f2012-04-14 00:33:13 +000034 [[int(), noreturn]]; // expected-warning {{attribute noreturn cannot be specified on a statement}}
Richard Smith6ee326a2012-04-10 01:32:12 +000035 [[class, test(foo 'x' bar),,,]];
Richard Smith534986f2012-04-14 00:33:13 +000036 [[bitand, noreturn]]; // expected-warning {{attribute noreturn cannot be specified on a statement}}
Richard Smith6ce48a72012-04-11 04:01:28 +000037
Richard Smithb9c62612012-07-30 21:30:52 +000038 // FIXME: Suppress vexing parse warning
39 [[noreturn]]int(e)(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
Richard Smith534986f2012-04-14 00:33:13 +000040 int e2(); // expected-warning {{interpreted as a function declaration}} expected-note{{}}
Richard Smith6ce48a72012-04-11 04:01:28 +000041
42 // A function taking a noreturn function.
Richard Smith534986f2012-04-14 00:33:13 +000043 int(f)([[noreturn]] int()); // expected-note {{here}}
Richard Smith6ce48a72012-04-11 04:01:28 +000044 f(e);
Richard Smith534986f2012-04-14 00:33:13 +000045 f(e2); // expected-error {{cannot initialize a parameter of type 'int (*)() __attribute__((noreturn))' with an lvalue of type 'int ()'}}
Richard Smith6ce48a72012-04-11 04:01:28 +000046
47 // Variables initialized by a message send.
48 int(g)([[noreturn getSelf] getSize]);
49 int(h)([[noreturn]{return noreturn;}() getSize]);
50
51 int i = g + h;
Richard Smith6ee326a2012-04-10 01:32:12 +000052}
53
54template<typename...Ts> void f(Ts ...x) {
55 [[test::foo(bar, baz)...]];
56 [[used(x)...]];
57 [[x...] { return [ X alloc ]; }() init];
58}