Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/implicitThisOnRefInLambdaInSmartcast.fir.kt
T

8 lines
163 B
Kotlin
Vendored

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