newWithoutClass.test 278 B

1234567891011121314151617181920212223
  1. New without a class
  2. -----
  3. <?php
  4. new;
  5. -----
  6. !!php5
  7. Syntax error, unexpected ';' from 2:4 to 2:4
  8. array(
  9. )
  10. -----
  11. <?php
  12. new;
  13. -----
  14. !!php7
  15. Syntax error, unexpected ';' from 2:4 to 2:4
  16. array(
  17. 0: Expr_New(
  18. class: Expr_Error(
  19. )
  20. args: array(
  21. )
  22. )
  23. )