summaryrefslogtreecommitdiff
path: root/Zend/tests/unused_shared_static_variables.phpt
blob: fc87a19f6a0b58cd768d2562add7a9e4bd80f75a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--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===