ceylon / ceylon-js

DEPRECATED
Apache License 2.0
54 stars 9 forks source link

import of value constructor is null #611

Closed sgalles closed 9 years ago

sgalles commented 9 years ago

when this code is executed

import foo{
    Foo {bar}
}

class Foo{
    shared new bar{}
}

shared void run(){
    Foo f = bar;
    print(f);
}

the ouput is <null>