b0dece756a
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.
5 lines
83 B
Kotlin
Vendored
5 lines
83 B
Kotlin
Vendored
// MODE: return
|
|
val x = run {
|
|
println(1)
|
|
if (true) 1 else { 0 }<# ^run #>
|
|
} |