fpc/tests/tbs/tb0055.pp
2000-11-30 22:38:14 +00:00

13 lines
275 B
ObjectPascal

{ Old file: tbs0062.pp }
{ shows illegal type conversion for boolean OK 0.99.6 (PFV) }
Program Bug0062;
var
myvar:boolean;
Begin
{ by fixing this we also start partly implementing LONGBOOL/WORDBOOL }
myvar:=boolean(1); { illegal type conversion }
end.