mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 21:07:54 +02:00
10 lines
175 B
ObjectPascal
10 lines
175 B
ObjectPascal
Program Bug0062;
|
|
|
|
|
|
var
|
|
myvar:boolean;
|
|
Begin
|
|
{ by fixing this we also start partly implementing LONGBOOL/WORDBOOL }
|
|
myvar:=boolean(1); { illegal type conversion }
|
|
end.
|