dd671313c5
#KT-2776 in progress
13 lines
231 B
Kotlin
13 lines
231 B
Kotlin
package test
|
|
|
|
public trait InheritNotVararg: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(p0: Array<out String?>?)
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(p0: Array<out String?>?)
|
|
}
|
|
}
|