[qfcc] Update chewed-alias test for new warnings

This commit is contained in:
Bill Currie 2020-03-05 18:26:11 +09:00
parent c377b324a1
commit 5200c3f518
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,9 @@
@class Array,Object;
@interface Array
-count;
-lastObject;
@end
@interface Object
@end
@static entity waypoint_thinker;
@static Array *waypoint_queue;
void foo (void)
@ -18,4 +23,6 @@ void __obj_exec_class (struct obj_module *msg) = #0;
@implementation Object
@end
@implementation Array
-count { return self; }
-lastObject { return nil; }
@end