ru_php/ext/opcache/tests/preload_static_var_inheritance.inc

10 lines
97 B
PHP
Raw Permalink Normal View History

<?php
class A {
public function test() {
static $foo;
}
}
class B extends A {}