35505007d2
* Fixes to tests * RunKonanTest runs tests build with TestRunner * Standalone tests
9 lines
105 B
Kotlin
9 lines
105 B
Kotlin
package a
|
|
|
|
interface A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
open class C: A<Int> {
|
|
override fun foo(): Int = 42
|
|
} |