xxxxxxxxxx
import std.stdio;
void main() @safe
{
int* n;
int m = 100;
n = &m; // mはここのスコープでしか使用できないはずだが参照を外に持ち出している
}
writeln(*n); // スコープ外で使うのは本来危険