Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/fullyQualified_ni.kt.after
T
2020-01-17 21:02:54 +07:00

15 lines
251 B
Plaintext
Vendored

// COMPILER_ARGUMENTS: -XXLanguage:+NewInference
// RUNTIME_WITH_FULL_JDK
import java.util.*
fun foo(f: () -> ArrayDeque<*>) {}
fun test() {
foo(
fun(): ArrayDeque<*> {
return ArrayDeque<Int>()
}
)
}