4d9b19da82
#KT-18539 Fixed
12 lines
194 B
Plaintext
Vendored
12 lines
194 B
Plaintext
Vendored
open class A {
|
|
open fun Int.foo(): Int {
|
|
return 0
|
|
}
|
|
}
|
|
|
|
class B: A() {
|
|
override fun Int.foo(): Int {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
}
|