summaryrefslogtreecommitdiff
path: root/tests/vm/exit_between_statements.elna
blob: 9a79e8636c36f690cffb821e8c36013de8939a13 (plain)
1
2
3
4
5
proc main() {
  printc('c');
  exit();
  printi(1234);
}