php-src/Zend/tests/inheritance/unused_shared_static_variables.phpt
DanielEScherzer 0d8b139bc1
Zend/tests: organize some tests with sub directories (7) (#17826)
Create a new subdirectory for tests relating to inheritance

Work towards GH-15631
2025-02-16 15:55:03 +00:00

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