ceylon/ceylon-js

Field used as constructor default value

Closed this issue · 1 comments

this code

shared class Foo{
    Integer b = 1;
    shared new(Integer a = b){
        print(a);
    }
}

shared void run(){
    Foo();
}

when executed outputs
<null>

hold on, this might be a spec bug