xxxxxxxxxx
import std.stdio;
void main() {
a = 42;
writeln(a);
auto b = f();
b = 90;
}
int a;
ref int f() {return a;}