aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendObjC
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-03-09 01:05:00 +0000
committerBill Wendling <isanbard@gmail.com>2011-03-09 01:05:00 +0000
commitd7f3e7d046ab0d4caad5237c9e49d22e5b0faf34 (patch)
tree0d55682ad4917b9d0b317a3e83b8a845886451ab /test/FrontendObjC
parent92a55f4bdd120cdd3bb5a004c792d4d24a940311 (diff)
downloadexternal_llvm-d7f3e7d046ab0d4caad5237c9e49d22e5b0faf34.zip
external_llvm-d7f3e7d046ab0d4caad5237c9e49d22e5b0faf34.tar.gz
external_llvm-d7f3e7d046ab0d4caad5237c9e49d22e5b0faf34.tar.bz2
Testcase for r127301.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendObjC')
-rw-r--r--test/FrontendObjC/2011-03-08-IVarLookup.m32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/FrontendObjC/2011-03-08-IVarLookup.m b/test/FrontendObjC/2011-03-08-IVarLookup.m
new file mode 100644
index 0000000..939f2a7
--- /dev/null
+++ b/test/FrontendObjC/2011-03-08-IVarLookup.m
@@ -0,0 +1,32 @@
+// 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