1--TEST--
2Cleanup of shared static variables HT that has never been used should not assert
3--FILE--
4<?php
5
6class A {
7    public function test() {
8        static $x;
9    }
10}
11class B extends A {}
12
13?>
14===DONE===
15--EXPECT--
16===DONE===
17