mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-12 17:37:21 +01:00
10 lines
142 B
Plaintext
10 lines
142 B
Plaintext
|
Nested namespaces are not allowed
|
||
|
-----
|
||
|
<?php
|
||
|
namespace A {
|
||
|
namespace B {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
-----
|
||
|
Namespace declarations cannot be nested on line 3
|