"Jesse Phillips" wrote in message news:vaatltklsmbmdnabo...@forum.dlang.org...
Wish it would work with @safe and nothrow too, granted writeln should eventually be @safe/trusted anyway.
I just travelled back in time and granted your wish! int x; int* p; void main() pure nothrow @safe { debug x = 3; debug throw new Exception(null); debug *(p+7) = 2;}