preload_trait_static.phpt 404 B

123456789101112131415161718192021
  1. --TEST--
  2. Preload trait with static variables in method
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.optimization_level=-1
  7. opcache.preload={PWD}/preload_trait_static.inc
  8. --EXTENSIONS--
  9. opcache
  10. --SKIPIF--
  11. <?php
  12. if (PHP_OS_FAMILY == 'Windows') die('skip Preloading is not supported on Windows');
  13. if (PHP_ZTS) die('xfail GH-8588');
  14. ?>
  15. --FILE--
  16. <?php
  17. $bar = new Bar;
  18. $bar->test();
  19. ?>
  20. --EXPECT--
  21. NULL