xxxxxxxxxx
import std;
@safe auto test(scope int* x)
{
int y = 69;
x = &y;
return x;
}
void main()
auto y = test(null);
writeln("Would you like some stack memory?");
writeln(*y);