Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/fullyQualified.kt.after
T
2020-02-04 21:34:53 +07:00

13 lines
219 B
Plaintext
Vendored

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