Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
regressions
/
kt35914.kt
blob: 381a683bd9c3efc8fff7454b90761bd3ddb3966c [
file
]
// WITH_STDLIB
class
Inv
<
T
>
fun
<
T
>
bar
(
x
:
Inv
<
T
>.()
->
Unit
)
=
x
fun box
():
String
{
listOf
(
bar
<
Char
>
{
},
bar
{
}
// the problem is here
)
return
"OK"
}