Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
>()