11 lines
297 B
Kotlin
Vendored
11 lines
297 B
Kotlin
Vendored
package javaApi
|
|
|
|
import kotlinApi.KotlinClass
|
|
|
|
abstract class C(field: Int) : KotlinClass(field) {
|
|
|
|
override fun foo(mutableCollection: MutableCollection<String>, nullableCollection: Collection<Int>?): MutableList<Any> {
|
|
return super.foo(mutableCollection, nullableCollection)
|
|
}
|
|
}
|