aboutsummaryrefslogtreecommitdiff
path: root/check/type/bool/pass-int.p
blob: da2bc977cacff2a10a5d3764a9563e1c9f9ca31d (plain)
1
2
3
4
5
6
7
8
9
10
program main ( input, output );
        var a: integer;
begin
	1 = 1;
	1 <= 1;
	1 >= 1;
	1 < 1;
	1 > 1;
	1 <> 1
end.