mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
16 lines
230 B
PHP
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===
|