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 interface InheritNotVarargInteger {
public interface Super {
void foo(Integer[] p);
}
public interface Sub extends Super {
void foo(Integer... p);
}
}