Files
compiler-the-translators/tests/sprint4/test/sp4_cg_or.alpha
2025-05-04 16:05:13 -04:00

11 lines
218 B
Plaintext

(* TEST: [-asc -tc -cg -ir] *)
type main: integer -> integer
function test: main
test (a) := {
[Boolean:b; Boolean: c; Boolean: d]
c := true;
d := false;
d := c | d;
return 1;
}