[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / fix-its.m
blob65aa81dc8663880675a5813dee9d87f489965d95
1 // RUN: c-index-test -test-load-source all %s -Wno-objc-root-class > %t 2>&1
2 // RUN: FileCheck -input-file=%t %s
4 @class NSString;
5 void _rdar_12584554_A (volatile const void * object, volatile const void * selector, const char * functionName, const char * fileName, unsigned int lineNumber, NSString * msgFormat, ...);
6 #define _rdar_12584554_B(self,_format_and_args_...) \
7     do{ _rdar_12584554_A(&self,&_cmd,__PRETTY_FUNCTION__,__FILE__,__LINE__, _format_and_args_); }while(0)
8 #define _rdar_12584554_C(_format_and_args_...) \
9     _rdar_12584554_B(self, _format_and_args_)
11 @interface RDar12584554
12 @end
14 // This test case tests that the "@" is properly inserted before the '"', even in the
15 // presence of a nested macro chain.
16 @implementation RDar12584554
17 - (void) test:(int)result {
18     _rdar_12584554_C("ted");
20 @end
22 // CHECK: FIX-IT: Insert "@" at 18:22