[Issue 16577] A selective import on a symbol that has overloads leads to duplicate deprecation messages

d-bugmail at puremagic.com d-bugmail at puremagic.com
Wed Nov 15 18:10:28 UTC 2017


https://issues.dlang.org/show_bug.cgi?id=16577

--- Comment #3 from Basile B. <b2.temp at gmx.com> ---
New test case since the JSON thing is gonna be removed from 2.0.78

---
module test16577;

deprecated void foo(int*){}
void foo(ref int){}

void main()
{
    import test16577 : foo;
}
---

--


More information about the Digitalmars-d-bugs mailing list