From: Daniel Dunbar Date: Mon, 1 Jun 2009 17:27:37 +0000 (+0000) Subject: Update test case. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bacf3d7ca46f784a8b2bdb5fec37b06ed6a42b68;p=clang Update test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72694 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaObjC/property-7.m b/test/SemaObjC/property-7.m index 5812b97427..99c16cef73 100644 --- a/test/SemaObjC/property-7.m +++ b/test/SemaObjC/property-7.m @@ -28,7 +28,7 @@ typedef struct _NSZone NSZone; @implementation SCMNode @synthesize name = _name; - - (void) setParent:(SCMNode*) inParent { + - (void) setParent:(SCMObject *__attribute__((objc_gc(weak)))) inParent { super.parent = inParent; } @end