block_pass_001.phpt 236 B

123456789101112
  1. --TEST--
  2. Block pass: Bugs in BOOL/QM_ASSIGN elision
  3. --EXTENSIONS--
  4. opcache
  5. --FILE--
  6. <?php
  7. (bool) (true ? $x : $y);
  8. (bool) (true ? new stdClass : null);
  9. (bool) new stdClass;
  10. ?>
  11. --EXPECTF--
  12. Warning: Undefined variable $x in %s on line %d