fpc/tests/tbs/tb0034.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

12 lines
221 B
ObjectPascal

{ Old file: tbs0039.pp }
{ shows the else-else problem OK 0.9.9 (FK) }
VAR a : BYTE;
BEGIN
a := 1;
IF a=0 THEN
IF a=1 THEN a:=2
ELSE
ELSE a:=3; { "Illegal expression" }
END.