aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendObjC/2011-03-08-IVarLookup.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendObjC/2011-03-08-IVarLookup.m')
-rw-r--r--test/FrontendObjC/2011-03-08-IVarLookup.m32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/FrontendObjC/2011-03-08-IVarLookup.m b/test/FrontendObjC/2011-03-08-IVarLookup.m
deleted file mode 100644
index 939f2a7b8f36..000000000000
--- a/test/FrontendObjC/2011-03-08-IVarLookup.m
+++ /dev/null
@@ -1,32 +0,0 @@
-// RUN: %llvmgcc -x objective-c -S -fobjc-abi-version=2 %s -o /dev/null
-// XFAIL: *
-// XTARGET: darwin
-
-typedef unsigned int UInt_t;
-
-@interface A
-{
-@protected
- UInt_t _f1;
-}
-@end
-
-@interface B : A { }
-@end
-
-@interface A ()
-@property (assign) UInt_t f1;
-@end
-
-@interface B ()
-@property (assign) int x;
-@end
-
-@implementation B
-@synthesize x;
-- (id) init
-{
- _f1 = 0;
- return self;
-}
-@end