PRX-40: make `{}` optional for namespace re-export
You can now write
```
namespace target export source(*);
```
instead of
```
namespace target { } export source(*);
```
If you omit the braces, an export clause or a semicolon are mandatory (e.g., `namespace ns` alone is not legal)