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

11 lines
149 B
Plaintext
Raw Normal View History

Nested namespaces are not allowed
-----
<?php
namespace A {
namespace B {
}
}
-----
2015-04-18 21:20:45 +02:00
Namespace declarations cannot be nested from 3:5 to 5:5