12 lines
170 B
Plaintext
Vendored
12 lines
170 B
Plaintext
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
|
|
import java.util.*
|
|
|
|
fun foo(f: () -> ArrayDeque<*>) {}
|
|
|
|
fun test() {
|
|
foo(fun(): ArrayDeque<Int> {
|
|
return ArrayDeque<Int>()
|
|
})
|
|
}
|