41fd43b5e5
Bug:
fun loop(var times : Int) {
while(times > 0) {
val u : (value : Int) -> Unit = { // This arrow is confusing the lookahead
System.out?.println(it)
}
u(times--)
}
}
9 lines
138 B
Plaintext
9 lines
138 B
Plaintext
package root
|
|
|
|
package a {
|
|
|
|
}
|
|
|
|
val x = <!EXPRESSION_EXPECTED_NAMESPACE_FOUND!>a<!>
|
|
val y2 = <!NAMESPACE_IS_NOT_AN_EXPRESSION!>namespace<!>
|