002.phpt 211 B

12345678910111213
  1. --TEST--
  2. Arrow functions implicit use must be throwing notices only upon actual use
  3. --FILE--
  4. <?php
  5. $b = 1;
  6. var_dump((fn() => $b + $c)());
  7. ?>
  8. --EXPECTF--
  9. Warning: Undefined variable $c in %s on line %d
  10. int(1)