You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
316 B
14 lines
316 B
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
@interface A
|
|
+(void) foo:(int) a;
|
|
@end
|
|
|
|
int main() {
|
|
id a;
|
|
[a bla:0 6:7]; // expected-error {{expected ']'}}
|
|
[A foo bar]; // expected-error {{expected ':'}}
|
|
[A foo bar bar1]; // expected-error {{expected ':'}}
|
|
[] {}; // expected-error {{expected expression}}
|
|
}
|