ceylon / ceylon-spec

DEPRECATED
Apache License 2.0
108 stars 34 forks source link

Field used as constructor default value #1441

Closed sgalles closed 8 years ago

sgalles commented 8 years ago

This should be rejected by the type checker

shared class Foo{
    Integer b = 1;
    shared new(Integer a = b){}
}
gavinking commented 8 years ago

Fixed. Thanks for reporting.