Right now this works:
``D
struct Std
{
public import std.stdio;
}
void main()
{
Std.writeln("Nice!");
}
```
I want to use it as an import hygiene idiom but not entirely sure
if this behavior can be relied upon (or it is just a side effect
of imports being implemented as aliases currently).