blob: fff5a9bf1637dd2ee659a3d2fdcd3241764ea407 [file]
fun Any.test() {
val x: () -> Int = when (this) {
is String -> { { length } }
else -> { { 1 } }
}
<!UNRESOLVED_REFERENCE!>length<!>
}