1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 18:13:56 +03:00
juvix/tests/Asm/negative/vtest007.jva

11 lines
124 B
Plaintext
Raw Normal View History

2022-09-29 18:44:55 +03:00
-- branch type mismatch
function main() {
push true;
br {
true: { push "a"; }
false: { push 1; }
};
ret;
}