OSNews article about C++09 degenerates into C++ vs. D discussion

Boris Kolar boris.kolar at globera.com
Wed Nov 22 00:57:48 PST 2006


== 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; // :(



More information about the Digitalmars-d mailing list