[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / ARCMT / objcmt-undefined-ns-macros.m
blob2e1fa51d04b80aa466780e63c2757974b9239a85
1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 -fmodules -objcmt-migrate-ns-macros -mt-migrate-directory %t %s -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11
3 // RUN: c-arcmt-test -mt-migrate-directory %t | arcmt-test -verify-transformed-files %s.result
5 // rdar://18498550
7 typedef long NSInteger;
8 enum {
9     UIViewNone         = 0x0,
10     UIViewMargin       = 0x1,
11     UIViewWidth        = 0x2,
12     UIViewRightMargin  = 0x3,
13     UIViewBottomMargin = 0xbadbeef
15 typedef NSInteger UITableStyle;
18 typedef
19   enum { two = 1 } NumericEnum2;
21 typedef enum { three = 1 } NumericEnum3;
23 typedef enum { four = 1 } NumericEnum4;