lama_byterun/src/testgc.expr

23 lines
208 B
Text
Raw Normal View History

2018-11-21 14:23:35 +03:00
fun f () local b {
b := 7;
test ();
b := y;
test ();
b := 9;
test ();
return 0
}
--x := 0;
--y := 0;
--z := 0;
--t := 0;
--test ();
2018-11-06 16:18:09 +03:00
y := "abc";
test ();
t := [];
test ();
t := 0;
2018-11-21 14:23:35 +03:00
test ();
f ()