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

10 lines
184 B
Plaintext

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