mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
137 B
Kotlin
Vendored
12 lines
137 B
Kotlin
Vendored
package test
|
|
|
|
interface A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
open class B : A<Int> {
|
|
override fun foo(): Int = 42
|
|
}
|
|
|
|
abstract class C : A<Int>
|