1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 10:03:22 +03:00
juvix/tests/Asm/negative/vtest007.jva
2022-09-29 17:44:55 +02:00

11 lines
124 B
Plaintext

-- branch type mismatch
function main() {
push true;
br {
true: { push "a"; }
false: { push 1; }
};
ret;
}