Processing vararg flag of parameter for primitives and wrappers.
#KT-2776 fixed
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
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?>?)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user