11 lines
158 B
Kotlin
11 lines
158 B
Kotlin
package something
|
|
|
|
trait Some<T> {
|
|
fun someFoo()
|
|
fun someOtherFoo() : Int
|
|
fun someGenericFoo() : T
|
|
}
|
|
|
|
class SomeOther<S> : Some<S> {
|
|
<caret>
|
|
} |