fill0llif
fill0llif
Setting late attribute's value through non type-safe metamodel causes NPE. ``` shared class Type() { shared late String attr; } shared void run() { `value Type.attr`.memberSet(Type(), "test"); } ``` As...
Trying to retrieve late attribute metamodel with `Set` type argument causes IncompatibleTypeException. ``` shared class Type() { shared late String attr; } shared void run() { assert (exists attr =...
As the title says, importing javax.javaeeapi inside imported module causes late value to return null. From the follwing case you can actually see the anonymous method isn't even called and...