www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 19606] New: Bad error message when two identical overloads

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

          Issue ID: 19606
           Summary: Bad error message when two identical overloads exist
                    as ` disable` and not
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Keywords: diagnostic
          Severity: minor
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: b2.temp gmx.com

code:

    class Foo
    {
         disable this();
        this(){}
    }

    void main()
    {
        Foo foo = new Foo;
    } 

 Error: `runnable.Foo.__ctor` called with argument types `()` matches both:
I think that the compiler should detect an error before this one and rather complain that the same function exists as ` disable` and not. --
Jan 23 2019