ceylon / ceylon-spec

DEPRECATED
Apache License 2.0
108 stars 34 forks source link

multiple default constructors should be rejected #1439

Closed gavinking closed 8 years ago

gavinking commented 8 years ago

Oooops! The typechecker accepts this:

class Foo {
    shared new() {}
    shared new(String name) {}
}

Nasty!

gavinking commented 8 years ago

Fixed.