Essentially, this should compile: ```d int[] make() pure @safe;
void main() @safe
{
shared xs = make();
}
```
Currently, only the conversion to `const shared` is enabled by
uniqueness. I don’t understand that limitation, but I’m not sure
I understand `shared` very well.
