nested.test 436 B

1234567891011121314151617181920212223242526
  1. Nested namespaces are not allowed
  2. -----
  3. <?php
  4. namespace A {
  5. namespace B {
  6. }
  7. }
  8. -----
  9. Namespace declarations cannot be nested from 3:5 to 5:5
  10. array(
  11. 0: Stmt_Namespace(
  12. name: Name(
  13. name: A
  14. )
  15. stmts: array(
  16. 0: Stmt_Namespace(
  17. name: Name(
  18. name: B
  19. )
  20. stmts: array(
  21. )
  22. )
  23. )
  24. )
  25. )