11a3482970
#KT-38632 Fixed
14 lines
319 B
Kotlin
Vendored
14 lines
319 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)
|
|
}
|
|
}
|