Updated test case

if_statement_parsing
Tristan B. V. Kildaire 2021-03-20 15:25:48 +02:00
parent 0ccadf51d4
commit 1121f2d84e
1 changed files with 18 additions and 0 deletions

View File

@ -37,6 +37,24 @@ class clazz_2_1
{
}
if(1)
{
print(1);
}
else if(1)
{
if(1)
{
}
}
else
{
}
}
print("Hello");