Files
kotlin-fork/compiler/testData/codegen/box/objects/kt46136.kt
T

12 lines
146 B
Kotlin
Vendored

abstract class A<T> {
fun print() = "OK"
}
fun f() = test("")
private fun <T> test(t: T) =
object : A<T>() {}
fun box() = f().print()