11 lines
129 B
Plaintext
11 lines
129 B
Plaintext
$msg = "a"
|
|
class shadowme($msg) {
|
|
$msg = "c"
|
|
if true {
|
|
$msg = "d" # this is used!
|
|
test $msg {}
|
|
}
|
|
}
|
|
|
|
include shadowme("b")
|