Files
mgmt/lang/interpret_test/TestAstFunc2/class-capture5/main.mcl
2019-07-20 01:33:42 -04:00

8 lines
125 B
Plaintext

$x1 = "bad1"
class foo($x1, $x2) {
test "t1: " + $x2 {} # swapped
test "t2: " + $x1 {}
}
include foo($x2, "t1")
$x2 = "t2"