Pull Up: Move Kotlin -> Kotlin tests to separate directory
This commit is contained in:
committed by
Alexey Sedunov
parent
a695202846
commit
ffc56a7c31
@@ -0,0 +1,12 @@
|
||||
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) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user