Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/overrides/sameValueParametersDifferentReceiver.kt
T

12 lines
182 B
Kotlin
Vendored

open class A {
fun String.foo(from: String, to: String): Int {
return 1
}
fun <T> T.foo(from: String, to: String): Int {
return 1
}
}
class B : A()