Files
mgmt/lang/interpret_test/TestAstFunc2/shadowing3.txtar
2025-01-26 19:48:17 -05:00

10 lines
143 B
Plaintext

-- main.mcl --
class foo($x) {
$x = "hello" # test shadowing again
test ["${x}",] {}
}
include foo("nope")
-- OUTPUT --
Vertex: test[hello]