summaryrefslogtreecommitdiff
path: root/clang/test/Rewriter/rewrite-modern-array-literal.mm
blob: 208e646eb3137b8efaa7f4575119f7c2d2517472 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// RUN: %clang_cc1 -x objective-c++ -fms-extensions -rewrite-objc %s -o %t-rw.cpp
// RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
// rdar://10803676

extern "C" void *sel_registerName(const char *);
@class NSString;

@interface NSNumber
+ (NSNumber *)numberWithChar:(char)value;
+ (NSNumber *)numberWithInt:(int)value;
@end

typedef unsigned long NSUInteger;

@interface NSArray 
+ (id)arrayWithObjects:(const id [])objects count:(NSUInteger)cnt;
@end

int i;
int main() {
  NSArray *array = @[ @"Hello", @1234 ];
  if (i) {
    NSArray *array = @[ @"Hello", @1234 ];
  }
  NSArray *array1 = @[ @"Hello", @1234, @[ @"Hello", @1234 ] ];
}