10 lines
206 B
Plaintext
Vendored
10 lines
206 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
interface Some {
|
|
fun foo(some : Int?) : Int
|
|
}
|
|
|
|
class SomeOther : Some {
|
|
override fun foo(some: Int?): Int {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |