Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
lambdaToAnonymousFunction
/
fullyQualified_ni.kt.after
blob: 9f04281b337618ddce12b7726c77632e155f7822 [
file
]
// COMPILER_ARGUMENTS: -XXLanguage:+NewInference
// RUNTIME_WITH_FULL_JDK
import
java
.
util
.*
fun foo
(
f
:
()
->
ArrayDeque
<*>)
{}
fun test
()
{
foo
(
fun
():
ArrayDeque
<*>
{
return
ArrayDeque
<
Int
>()
})
}