xref
: /
php-src
/
ext
/
opcache
/
tests
/
preload_static_var_inheritance.inc
(revision 21a9ad91)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
<?php
2
3
class A {
4
public function test() {
5
static $foo;
6
}
7
}
8
9
class B extends A {}
10