diff options
author | Roman Divacky <rdivacky@FreeBSD.org> | 2009-10-14 18:03:49 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@FreeBSD.org> | 2009-10-14 18:03:49 +0000 |
commit | 4c8b24812ddcd1dedaca343a6d4e76f91f398981 (patch) | |
tree | 137ebebcae16fb0ce7ab4af456992bbd8d22fced /test/SemaObjC/method-encoding-2.m | |
parent | 5362a71c02e7d448a8ce98cf00c47e353fba5d04 (diff) |
Notes
Diffstat (limited to 'test/SemaObjC/method-encoding-2.m')
-rw-r--r-- | test/SemaObjC/method-encoding-2.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/method-encoding-2.m b/test/SemaObjC/method-encoding-2.m index 64a0bc4c323d0..b3ffdcd0585c2 100644 --- a/test/SemaObjC/method-encoding-2.m +++ b/test/SemaObjC/method-encoding-2.m @@ -7,6 +7,6 @@ @end @implementation Intf -- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2{} -- (id) another:(void *)location with:(unsigned **)arg2 {} +- (in out bycopy id) address:(byref inout void *)location with:(out oneway unsigned **)arg2{ return 0; } +- (id) another:(void *)location with:(unsigned **)arg2 { return 0; } @end |