10 lines
118 B
Kotlin
10 lines
118 B
Kotlin
package test
|
|
|
|
interface A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
abstract class B : A<Int> {
|
|
override abstract fun foo(): Int
|
|
}
|