dmd/compiler/test/runnable/extra-files/objc_super_call.m
2022-07-09 18:53:07 +02:00

12 lines
133 B
Objective-C

#import <Foundation/Foundation.h>
@interface Foo : NSObject
-(int) foo;
@end
@implementation Foo
-(int) foo
{
return 3;
}
@end