8 lines
116 B
Plaintext
8 lines
116 B
Plaintext
trait Some {
|
|
fun foo(some : Int?) : Int
|
|
}
|
|
|
|
class SomeOther : Some {
|
|
|
|
override fun foo(some: Int?): Int = 0
|
|
} |