[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / clang / test / FixIt / fixit-objc-arc.m
blob763e8b7d29c86bc310a753e07d20616247c69326
1 // RUN: %clang_cc1 -pedantic -verify %s
2 // RUN: cp %s %t
3 // RUN: not %clang_cc1 -pedantic -fobjc-arc -fixit -x objective-c %t
4 // RUN: %clang_cc1 -pedantic -fobjc-arc -Werror -x objective-c %t
6 @class A;
7 @class NSString;
9 @interface Test
10 - (void)test:(NSString *)string;
12 @property (copy) NSString *property;
13 @end
15 void g(NSString *a);
16 void h(id a);
18 void f(Test *t) {
19   NSString *a = "Foo"; // expected-error {{string literal must be prefixed by '@'}}
20   g("Foo"); // expected-error {{string literal must be prefixed by '@'}}
21   [t test:"Foo"]; // expected-error {{string literal must be prefixed by '@'}}
22   t.property = "Foo"; // expected-error {{string literal must be prefixed by '@'}}