aboutsummaryrefslogtreecommitdiff
path: root/check/type/fail-if.p
blob: 17126d6adf265ccc13c4f4fe0b4bdcd7cbc9d4b7 (plain)
1
2
3
4
5
6
7
8
9
program main ( input, output );
        var a: integer;
begin
	if (1)
        then
                a:= 1
        else
                a:= 0
end.