blob: f431468fd4575518d0e1da75d3daad0a8b20c3bd [file] [log] [blame]
interface Some {
fun foo(some : Int?) : Int
}
class SomeOther : Some {
override fun foo(some: Int?): Int {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
}
}