diff options
Diffstat (limited to 'clang/test/SemaObjC/fixed-enum.m')
-rw-r--r-- | clang/test/SemaObjC/fixed-enum.m | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/test/SemaObjC/fixed-enum.m b/clang/test/SemaObjC/fixed-enum.m deleted file mode 100644 index a057dc0d374..00000000000 --- a/clang/test/SemaObjC/fixed-enum.m +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s -// rdar://10381507 - -typedef enum : long { Foo } IntegerEnum; -int arr[(sizeof(typeof(Foo)) == sizeof(typeof(IntegerEnum))) - 1]; -int arr1[(sizeof(typeof(Foo)) == sizeof(typeof(long))) - 1]; -int arr2[(sizeof(typeof(IntegerEnum)) == sizeof(typeof(long))) - 1]; |