add43407d3
#KT-8723 Fixed
18 lines
273 B
Plaintext
Vendored
18 lines
273 B
Plaintext
Vendored
// FILE: b.kt
|
|
open class Foo<T> {
|
|
open fun bar(t: T) {}
|
|
}
|
|
|
|
class Bar() : Foo<Int>() {
|
|
override fun <caret>bar(ts: Int) {
|
|
}
|
|
}
|
|
// FILE: a.kt
|
|
open class Foo<T> {
|
|
open fun <caret>bar(t: T) {}
|
|
}
|
|
|
|
class Bar() : Foo<Int>() {
|
|
override fun bar(ts: Int) {
|
|
}
|
|
} |