== Quote from David Medlock (noone at nowhere.com)'s article
> File file = new FileStream(...);
> scope(exit) { file.close(); }
> ...
> -DavidM
Now we can't return that file:
File file = new FileStream(...);
scope(exit) { file.close(); }
return file; // :(