mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
10 lines
166 B
Plaintext
10 lines
166 B
Plaintext
trait Some {
|
|
fun foo(some : Int?) : Int
|
|
}
|
|
|
|
class SomeOther : Some {
|
|
|
|
override fun foo(some: Int?): Int {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
} |