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

11 lines
112 B
Plaintext

$msg = "a"
class shadowme($msg) {
$msg = "c"
if true {
$msg = "d"
}
test $msg {}
}
include shadowme("b")