Jumping on else added.

This commit is contained in:
Christoffer Lerno
2020-05-05 11:28:49 +02:00
parent 982b663f2c
commit 93bd0fb337
13 changed files with 128 additions and 69 deletions

View File

@@ -663,6 +663,9 @@ func int testThrowAny(int x) throws
func int oekt() throws
{
int z = try testThrow(-1) else goto NEXT;
printf("Skipped.\n");
NEXT:
int x = try testThrow(-3);
return x;
}