12 lines
183 B
Kotlin
Vendored
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) {
|
|
|
|
}
|
|
} |