Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
ir
/
anonymousObjectInGenericFun.kt
blob: 4a8d1cbd0196dfd652cfab7214ff65d6419d60bf [
file
]
fun
<
T
>
test
():
String
{
val x
=
object
{
fun
<
S
>
foo
()
=
"OK"
}
return
x
.
foo
<
Any
>()
}
fun box
()
=
test
<
Int
>()