Files
kotlin-fork/compiler/testData/codegen/box/regressions/noResolutionRecursion.kt
T
2017-08-23 15:53:44 +03:00

5 lines
95 B
Kotlin
Vendored

fun <T> T.at(element: Int) = this.at()
fun <T> T.at(): T = this
fun box(): String = "OK".at()