wrong_inlining_003.phpt 331 B

1234567891011121314151617181920212223
  1. --TEST--
  2. foo($bar) with undefined $bar
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.optimization_level=-1
  7. --EXTENSIONS--
  8. opcache
  9. --FILE--
  10. <?php
  11. function get_const() {
  12. return 42;
  13. }
  14. function test() {
  15. var_dump(get_const($undef));
  16. }
  17. test();
  18. ?>
  19. --EXPECTF--
  20. Warning: Undefined variable $undef in %s on line %d
  21. int(42)