diff options
Diffstat (limited to 'test/FixIt/fixit-objc.m')
-rw-r--r-- | test/FixIt/fixit-objc.m | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/test/FixIt/fixit-objc.m b/test/FixIt/fixit-objc.m index 03f28a1..bf704c6 100644 --- a/test/FixIt/fixit-objc.m +++ b/test/FixIt/fixit-objc.m @@ -1,6 +1,7 @@ +// RUN: %clang_cc1 -pedantic -verify %s // RUN: cp %s %t -// RUN: %clang_cc1 -pedantic -fixit -x objective-c %t -// RUN: %clang_cc1 -pedantic -verify -x objective-c %t +// RUN: not %clang_cc1 -pedantic -fixit -x objective-c %t +// RUN: %clang_cc1 -pedantic -Werror -x objective-c %t /* This is a test of the various code modification hints that are provided as part of warning or extension diagnostics. All of the @@ -10,28 +11,31 @@ @protocol X; void foo() { - <X> *P; // should be fixed to 'id<X>'. + <X> *P; // expected-warning{{protocol qualifiers without 'id' is archaic}} } @class A; @class NSString; @interface Test -- (void)test:(NSString *)string; +- (void)test:(NSString *)string; // expected-note{{passing argument to parameter 'string' here}} @property (copy) NSString *property; @end -void g(NSString *a); -void h(id a); +void g(NSString *a); // expected-note{{passing argument to parameter 'a' here}} +void h(id a); // expected-note 2{{passing argument to parameter 'a' here}} void f(Test *t) { - NSString *a = "Foo"; - id b = "Foo"; - A* c = "Foo"; // expected-warning {{incompatible pointer types initializing 'A *' with an expression of type 'char [4]'}} - g("Foo"); - h("Foo"); - h(("Foo")); - [t test:"Foo"]; - t.property = "Foo"; + NSString *a = "Foo"; // expected-warning {{incompatible pointer types initializing 'NSString *' with an expression of type 'char [4]'}} + id b = "Foo"; // expected-warning {{incompatible pointer types initializing 'id' with an expression of type 'char [4]'}} + g("Foo"); // expected-warning{{incompatible pointer types passing 'char [4]' to parameter of type 'NSString *'}} + h("Foo"); // expected-warning{{incompatible pointer types passing 'char [4]' to parameter of type 'id'}} + h(("Foo")); // expected-warning{{incompatible pointer types passing 'char [4]' to parameter of type 'id'}} + [t test:"Foo"]; // expected-warning{{incompatible pointer types sending 'char [4]' to parameter of type 'NSString *'}} + t.property = "Foo"; // expected-warning{{incompatible pointer types assigning to 'NSString *' from 'char [4]'}} + + // <rdar://problem/6896493> + [t test:@"Foo"]]; // expected-error{{extraneous ']' before ';'}} + g(@"Foo")); // expected-error{{extraneous ')' before ';'}} } |