diff options
author | Sebastian Imlay <sebastian.imlay@gmail.com> | 2020-01-04 14:45:59 -0800 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-01-05 14:05:35 +0100 |
commit | ba409edf5d3a1acc6ac4dcb32d1e168cc3a2a41b (patch) | |
tree | 0ff53a9ce5518692e0de639ad4dbf02b226a99b3 /tests/headers/objc_method.h | |
parent | f39c4a95cbb92a3df2f68765b7b4648a51bb4402 (diff) |
Added non-keyword support to objective-c methods.
Diffstat (limited to 'tests/headers/objc_method.h')
-rw-r--r-- | tests/headers/objc_method.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/headers/objc_method.h b/tests/headers/objc_method.h index 7a22e8e4..c4d375ba 100644 --- a/tests/headers/objc_method.h +++ b/tests/headers/objc_method.h @@ -8,4 +8,8 @@ - (int)methodReturningInt; - (Foo*)methodReturningFoo; - (void)methodWithArg1:(int)intvalue andArg2:(char*)ptr andArg3:(float)floatvalue; +- (instancetype)methodWithAndWithoutKeywords:(int)arg1 + arg2Name:(float)arg2 + :(float)arg3 + arg4Name:(int)arg4; @end |