Supported propagation of vararg mark.

#KT-2776 in progress
This commit is contained in:
Evgeny Gerashchenko
2012-11-22 17:18:10 +04:00
parent 4df311366d
commit dd671313c5
18 changed files with 287 additions and 2 deletions
@@ -0,0 +1,12 @@
package test;
public interface InheritNotVararg {
public interface Super {
void foo(String[] p);
}
public interface Sub extends Super {
void foo(String... p);
}
}