[qfcc] Tweak ivar test to check old bug

It turns out that assigning nil to an ivar struct does not work (should,
of course).
This commit is contained in:
Bill Currie 2020-03-11 20:55:21 +09:00
parent 48a256efaa
commit d418be31e6

View file

@ -17,6 +17,7 @@ typedef struct Point Point;
@implementation Object
-(Point) origin
{
origin = nil;
return origin;
}
@end