php-parser/test/code/parser/stmt/namespace/nested.test-fail

10 lines
142 B
Plaintext
Raw Normal View History

Nested namespaces are not allowed
-----
<?php
namespace A {
namespace B {
}
}
-----
Namespace declarations cannot be nested on line 3