On 2013-09-08 20:13, Simen Kjaeraas wrote:
In response to Walter's DIP47 I have created my own take on what I see
as the main problem:

http://wiki.dlang.org/DIP48

As I wrote in the DIP47 thread:

What's wrong with this currently working code:

class Foo
{
    void foo ();

    void foo ()
    {
        writeln("Foo.foo");
    }
}

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

--
/Jacob Carlborg

Reply via email to