diff options
author | preevs <devnull@localhost> | 2011-08-02 19:28:36 -0400 |
---|---|---|
committer | preevs <devnull@localhost> | 2011-08-02 19:28:36 -0400 |
commit | 9afc51734911a6cf7f235f9ba573bca0a53e8cba (patch) | |
tree | 152fe89c88aa38e4afc757bef78f000cb918ea46 /tests/examplefiles/objc_example.m | |
parent | 6f6c33b7ddb284030d3e723706988718e113e37c (diff) | |
parent | fe76841035ece13ad6640c920f2fd9d23144148b (diff) | |
download | pygments-9afc51734911a6cf7f235f9ba573bca0a53e8cba.tar.gz |
merge
Diffstat (limited to 'tests/examplefiles/objc_example.m')
-rw-r--r-- | tests/examplefiles/objc_example.m | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/examplefiles/objc_example.m b/tests/examplefiles/objc_example.m index c2a1c414..cb5c0975 100644 --- a/tests/examplefiles/objc_example.m +++ b/tests/examplefiles/objc_example.m @@ -1,5 +1,19 @@ #import "Somefile.h" +@implementation ABC + +- (id)a:(B)b { + return 1; +} + +@end + +@implementation ABC + +- (void)xyz; + +@end + NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys: @"quattuor", @"four", @"quinque", @"five", @"sex", @"six", nil]; |