mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
11 lines
137 B
Kotlin
Vendored
11 lines
137 B
Kotlin
Vendored
interface A<in T> {
|
|
private fun f(): T {
|
|
TODO()
|
|
}
|
|
}
|
|
|
|
interface B<out T> {
|
|
private fun f(): T {
|
|
TODO()
|
|
}
|
|
} |