9 lines
129 B
Plaintext
Vendored
9 lines
129 B
Plaintext
Vendored
abstract class A<T, U> {
|
|
// INFO: {"checked": "true"}
|
|
fun foo(s: String, x: U) {
|
|
|
|
}
|
|
}
|
|
|
|
class B<X>: A<String, X>() {
|
|
} |