preload_trait_static.inc 129 B

123456789101112
  1. <?php
  2. trait Foo {
  3. public function test() {
  4. static $bar;
  5. var_dump($bar);
  6. }
  7. }
  8. class Bar {
  9. use Foo;
  10. }