www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 16577] New: deprecated message problem with overloaded

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

          Issue ID: 16577
           Summary: deprecated message problem with overloaded functions
                    and selective import
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: minor
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: b2.temp gmx.com

Taking the case of std.json.toJSON:

void main()
{
    import std.json: toJSON, JSONValue;
    JSONValue v;
    auto str = toJSON(v);
}
Oct 02 2016