by_ref_error.phpt 192 B

123456789101112
  1. --TEST--
  2. By-ref variadics enforce the reference
  3. --FILE--
  4. <?php
  5. function test(&... $args) { }
  6. test(1);
  7. ?>
  8. --EXPECTF--
  9. Fatal error: Only variables can be passed by reference in %s on line %d