On Friday, 20 August 2021 at 04:27:34 UTC, Jesse Phillips wrote:
For me, this code generates the Message Box. Does this happen for you?

no errors
https://run.dlang.io/is/4tlm3p
```D
void main() {
    try {
       import std.stdio: File;
       File file = File(__FILE__,"r");
       file.close();
   }
   catch(Throwable e) {
       import std.stdio: writefln;
       writefln("err=%s", e.msg);
   }
}
```

Reply via email to