The following code snippet gives a compilation error in F4 but compiles fine in Fantom:
using fwt
class Example {
Str? text
Void main() {
label := Label { it.text = method(this.&text) } // compilation error -> Expected ',', not '&'
}
Str method(Str s) { s }
}