summaryrefslogtreecommitdiff
path: root/test/SemaObjC/newproperty-class-method-1.m
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2009-03-11 20:12:18 +0000
committerSteve Naroff <snaroff@apple.com>2009-03-11 20:12:18 +0000
commit335c6808aabff7cb043ea02b72754fd580ce9712 (patch)
treeaeaca1cb4709284ef8c6ceb5793597aa384e1ee3 /test/SemaObjC/newproperty-class-method-1.m
parent3cf538d5c49bbebac1afa6f4a5010e3d877440bb (diff)
downloadclang-335c6808aabff7cb043ea02b72754fd580ce9712.tar.gz
Implement FIXME related to <rdar://problem/6496506> Implement class setter/getter for properties.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66689 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaObjC/newproperty-class-method-1.m')
-rw-r--r--test/SemaObjC/newproperty-class-method-1.m3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/SemaObjC/newproperty-class-method-1.m b/test/SemaObjC/newproperty-class-method-1.m
index 177cb3e8fc..155955c483 100644
--- a/test/SemaObjC/newproperty-class-method-1.m
+++ b/test/SemaObjC/newproperty-class-method-1.m
@@ -22,12 +22,9 @@ int _magicNumber = 0;
+ (void) classMeth
{
-#if 0
-// FIXME: implement.
self.magicNumber = 10;
if (self.magicNumber != 10)
abort ();
-#endif
}
@end