88bf3d9298
#KT-2776 fixed
13 lines
232 B
Kotlin
13 lines
232 B
Kotlin
package test
|
|
|
|
public trait InheritNotVarargInteger: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(p0: Array<out Int?>?)
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(p0: Array<out Int?>?)
|
|
}
|
|
}
|