Interpreter adopts inner interpreter panic state on assert failure

This commit is contained in:
2022-08-27 12:07:41 +01:00
parent 90e5a5d08b
commit e523a6f60a
5 changed files with 18 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
fn panic() {
assert false, "This should only be seen once";
}
panic();
panic();