assign_coalesce_007.phpt 232 B

12345678910111213
  1. --TEST--
  2. Assign coalesce: "$a[0] ??= $a" should evaluate the right $a first
  3. --FILE--
  4. <?php
  5. $a[0] ??= $a;
  6. var_dump($a);
  7. ?>
  8. --EXPECTF--
  9. Warning: Undefined variable $a in %sassign_coalesce_007.php on line 2
  10. array(1) {
  11. [0]=>
  12. NULL
  13. }