4d9b19da82
#KT-18539 Fixed
9 lines
189 B
Plaintext
Vendored
9 lines
189 B
Plaintext
Vendored
interface Some {
|
|
fun foo(some : Int?) : Int
|
|
}
|
|
|
|
class SomeOther : Some {
|
|
override fun foo(some: Int?): Int {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |