mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
10 lines
114 B
Kotlin
10 lines
114 B
Kotlin
package test
|
|
|
|
trait A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
abstract class B : A<Int> {
|
|
override abstract fun foo(): Int
|
|
}
|