On Tuesday, 7 April 2015 at 03:17:26 UTC, Walter Bright wrote:
http://wiki.dlang.org/DIP76

Deprecation can be reported by checking version:

version(EnableNothrowAutodecoding)
  alias autodecode=autodecodeImpl;
else
  @deprecated("compile with -version=EnableNothrowAutodecoding")
  alias autodecode=autodecodeImpl;

Reply via email to