Files
kotlin-fork/idea/testData/codeInsight/hints/lambda/Elvis.kt
T
Andrei Klunnyi b0dece756a KT-32368 Rework Inline hints settings // migrate tests for lambdas
KotlinLambdasHintsProvider which in now responsible for lambda related
hints is not compatible with the existing LambdaReturnValueHintsTest.
Because of that tests were migrated to the new infrastructure.
2020-07-14 10:03:46 +00:00

7 lines
107 B
Kotlin
Vendored

// MODE: return
fun foo() {
run {
val length: Int? = null
length ?: 0<# ^run #>
}
}