mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
fd24524e13
I really need to sort out some test automation.
14 lines
156 B
R
14 lines
156 B
R
void __obj_exec_class (obj_module_t *msg) = #0;
|
|
|
|
@interface Foo
|
|
-init;
|
|
@end
|
|
|
|
@interface Bar : Foo
|
|
@end
|
|
|
|
@implementation Bar
|
|
-init
|
|
{
|
|
return [super init];
|
|
}
|