Some extra tests

This commit is contained in:
Dmitry Boulytchev 2018-11-06 17:10:35 +03:00 committed by danyaberezun
parent 75a09f45e8
commit 3e95c3b8f5
6 changed files with 36 additions and 0 deletions

9
regression/test048.expr Normal file
View file

@ -0,0 +1,9 @@
fun test (n, m) local i, s {
write (n);
write (m);
return n
}
n := read ();
y := 1 + (2 + (3 + (4 + (5 + (6 + test (7, 7))))));
write (y)