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.
13 lines
155 B
Kotlin
Vendored
13 lines
155 B
Kotlin
Vendored
// MODE: return
|
|
fun bar() {
|
|
var test = 0
|
|
run {
|
|
test
|
|
test++<# ^run #>
|
|
}
|
|
|
|
run {
|
|
test
|
|
++test<# ^run #>
|
|
}
|
|
} |