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.
16 lines
247 B
Kotlin
Vendored
16 lines
247 B
Kotlin
Vendored
// MODE: return
|
|
@Target(AnnotationTarget.EXPRESSION)
|
|
annotation class Some
|
|
|
|
fun test() {
|
|
run {
|
|
val files: Any? = null
|
|
@Some
|
|
12<# ^run #>
|
|
}
|
|
|
|
run {
|
|
val files: Any? = null
|
|
@Some 12<# ^run #>
|
|
}
|
|
} |