[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / FixIt / fixit-static-object-decl.m
blob6d6f55500518b08a0818e1362694ec0aa5af494e
1 // Objective-C recovery
2 // RUN: cp %s %t
3 // RUN: not %clang_cc1 -fixit -x objective-c %t
4 // RUN: %clang_cc1 -fsyntax-only -Werror -x objective-c %t
6 // Objective-C++ recovery
7 // RUN: cp %s %t
8 // RUN: not %clang_cc1 -fixit -x objective-c++ %t -std=c++11
9 // RUN: %clang_cc1 -fsyntax-only -Werror -x objective-c++ %t  -std=c++11
10 // rdar://9603056
12 @interface S @end
14 @interface NSArray
16 @public
17   S iS;
19 + (id) arrayWithObjects;
20 @end
22 NSArray func(void) {
23   NSArray P;
24   return P;
27 NSArray (func2)(void) { return 0; }
29 #ifdef __cplusplus
30 void test_result_type() {
31   auto l1 = [] () -> NSArray { return 0; };
33 #endif
35 int main(void) {
36         NSArray pluginNames = [NSArray arrayWithObjects];