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

11 lines
129 B
Plaintext

$msg = "a"
class shadowme($msg) {
$msg = "c"
if true {
$msg = "d" # this is used!
test $msg {}
}
}
include shadowme("b")