菜谱项目

nested.test 533B

123456789101112131415161718192021222324252627282930
  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. parts: array(
  14. 0: A
  15. )
  16. )
  17. stmts: array(
  18. 0: Stmt_Namespace(
  19. name: Name(
  20. parts: array(
  21. 0: B
  22. )
  23. )
  24. stmts: array(
  25. )
  26. )
  27. )
  28. )
  29. )