Files
kotlin-fork/idea/testData/refactoring/pullUp/k2k/noClashWithAbstractSuper.kt
T

12 lines
183 B
Kotlin
Vendored

abstract class A<T, U> {
abstract fun foo(t: String, u: U) {
}
}
class <caret>B<X>: A<String, X>() {
// INFO: {"checked": "true"}
fun foo(s: String, x: X) {
}
}