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

Danila Letunovskiy <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Danila Letunovskiy <[email protected]> ---
And this Error

int foo(int a, int b=2){
    return a + b;
}

int foo(float a){
    return a;
}

void main() {
    writeln( foo(12) );
}

--

Reply via email to