Processing vararg flag of parameter for primitives and wrappers.

#KT-2776 fixed
This commit is contained in:
Evgeny Gerashchenko
2012-11-28 12:55:21 +04:00
parent 6375ea89a0
commit 88bf3d9298
16 changed files with 202 additions and 8 deletions
@@ -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?>?)
}
}