ns_094.phpt 282 B

123456789101112131415
  1. --TEST--
  2. Type group use declarations should not allow override on inner items
  3. --FILE--
  4. <?php
  5. // should throw syntax errors
  6. use const Foo\Bar\{
  7. A,
  8. const B,
  9. function C
  10. };
  11. ?>
  12. --EXPECTF--
  13. Parse error: syntax error, unexpected token "const", expecting "}" in %s on line %d