Files
kotlin-fork/compiler/testData/codegen/box/regressions/noResolutionRecursion.kt
T
2019-11-19 11:00:09 +03:00

6 lines
125 B
Kotlin
Vendored

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