php-src/Zend/tests/method_argument_binding.phpt
Nikita Popov 4f54c15cb1 Ct bind private/final $this method call args
The test covers two edge-cases wrt opcache support.
2016-04-27 17:10:44 +02:00

48 lines
731 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 final function method(&$x) {
++$x;
}
}
class E extends D {
public function __call($name, $args) { }
public function test() {
$this->method($x);
}
}
(new E)->test();
?>
--EXPECTF--
Warning: Declaration of C::method(&$x) should be compatible with A::method($x) in %s on line %d
int(2)
Notice: Undefined variable: x in %s on line %d