tebe6502 / Mad-Pascal

Mad Pascal Compiler for 6502 (Atari XE/XL, C64, C4Plus, Neo6502)
122 stars 19 forks source link

No error on pointers to undeclared types #126

Closed noyen1973 closed 9 months ago

noyen1973 commented 9 months ago

No error or warning is generated for a pointer to a type that is not declared. The source compiles and internally VARDATASIZE gets messed up affecting all other labels that depend on it. This happens even if the pointer is unused.

program ptest;
var p: ^anytype;
begin
end.
tebe6502 commented 9 months ago

issue #126 fixed