aboutsummaryrefslogtreecommitdiff
path: root/check/type/bool/pass-bool.p
blob: 3701bcb3b189931c28bca592d2501c3118ffed99 (plain)
1
2
3
4
5
6
7
program main ( input, output );
        var a: integer;
begin
	not (1.1 = 1.1);
	(1.1 = 1.1) or (1 = 2);
	(1.1 = 1.1) and (1 = 2)
end.