d06787886a
#KT-34744
15 lines
251 B
Plaintext
Vendored
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>()
|
|
}
|
|
)
|
|
}
|