4d9b19da82
#KT-18539 Fixed
9 lines
157 B
Plaintext
Vendored
9 lines
157 B
Plaintext
Vendored
interface A {
|
|
fun String.foo()
|
|
}
|
|
|
|
class B : A {
|
|
override fun String.foo() {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |