On 4/24/14, Jon Giddy via Digitalmars-d <[email protected]> wrote: > Is there a good way to deprecate a module?
It's a filed enhancement: https://issues.dlang.org/show_bug.cgi?id=12567 As a current workaround you can use a deprecated block: ----- module bar; deprecated: void test() { } void test2() { } -----
