4d9b19da82
#KT-18539 Fixed
12 lines
207 B
Plaintext
Vendored
12 lines
207 B
Plaintext
Vendored
interface I {
|
|
fun foo(p: Int)
|
|
}
|
|
|
|
class A : I {
|
|
override fun foo(p: Int) {
|
|
<caret><selection>TODO("Not yet implemented")</selection>
|
|
}
|
|
}
|
|
|
|
// ELEMENT_TEXT: "override fun foo(p: Int) {...}"
|