xxxxxxxxxx
void main()
{
inout(int) f(inout(int)[inout(string)] x);
const(int)[const(string)] x;
f(x); // fails to compile; can’t pass argument
}