blob: e77c2ee745272074333194dd22c87d438637ec63 [file]
interface Some {
fun foo(some : Int?) : Int
}
class SomeOther : Some {
override fun foo(some: Int?): Int {
<selection><caret>TODO("Not yet implemented")</selection>
}
}