9 lines
130 B
Kotlin
9 lines
130 B
Kotlin
package codegen.bridges.linkTest.a
|
|
|
|
interface A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
open class C: A<Int> {
|
|
override fun foo(): Int = 42
|
|
} |