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