1Braced namespaces
2-----
3<?php
4
5namespace Foo\Bar {
6    foo;
7}
8namespace {
9    bar;
10}
11-----
12array(
13    0: Stmt_Namespace(
14        name: Name(
15            name: Foo\Bar
16        )
17        stmts: array(
18            0: Stmt_Expression(
19                expr: Expr_ConstFetch(
20                    name: Name(
21                        name: foo
22                    )
23                )
24            )
25        )
26    )
27    1: Stmt_Namespace(
28        name: null
29        stmts: array(
30            0: Stmt_Expression(
31                expr: Expr_ConstFetch(
32                    name: Name(
33                        name: bar
34                    )
35                )
36            )
37        )
38    )
39)
40