php-src/Zend/tests/unused_shared_static_variables.phpt
2017-01-24 11:32:41 +01:00

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===