mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 21:18:25 +02:00
12 lines
199 B
ObjectPascal
12 lines
199 B
ObjectPascal
{ Old file: tbs0041.pp }
|
|
{ shows the if then end. problem OK 0.9.9 (FK) }
|
|
|
|
var
|
|
b1: boolean;
|
|
Begin
|
|
begin
|
|
If b1 then { illegal expression }
|
|
end;
|
|
while b1 do
|
|
End.
|