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

8 lines
208 B
Kotlin
Vendored

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