mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
272b887b7b
Closes GH-5401
47 lines
630 B
PHP
47 lines
630 B
PHP
--TEST--
|
|
Edge cases in compile-time method argument binding
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
private function method($x) {}
|
|
}
|
|
|
|
class B extends A {
|
|
public function test() {
|
|
$x = 1;
|
|
$this->method($x);
|
|
var_dump($x);
|
|
}
|
|
}
|
|
|
|
class C extends B {
|
|
public function method(&$x) {
|
|
++$x;
|
|
}
|
|
}
|
|
|
|
(new C)->test();
|
|
|
|
class D {
|
|
private function method(&$x) {
|
|
++$x;
|
|
}
|
|
}
|
|
|
|
class E extends D {
|
|
public function __call($name, $args) { }
|
|
|
|
public function test() {
|
|
$this->method($x);
|
|
}
|
|
}
|
|
|
|
(new E)->test();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
int(2)
|
|
|
|
Warning: Undefined variable $x in %s on line %d
|