ru_php/Zend/tests/inheritance/unused_shared_static_variables.phpt

17 lines
230 B
PHP

--TEST--
Cleanup of shared static variables HT that has never been used should not assert
--FILE--
<?php
class A {
public function test() {
static $x;
}
}
class B extends A {}
?>
===DONE===
--EXPECT--
===DONE===