Fixed KT-5433 J2K: incorrect conversion of method call with vararg

#KT-5433 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-07-09 14:03:21 +04:00
parent fe46b40220
commit 5c688e9916
9 changed files with 70 additions and 10 deletions
+6 -2
View File
@@ -49,10 +49,14 @@ public enum E {
A, B, C
}
class Base {
public class Base {
public @Nullable String foo(@Nullable String s) { return s; }
}
class Derived extends Base {
public class Derived extends Base {
public String foo(String s) { return s; }
}
public class WithVarargConstructor {
public WithVarargConstructor(int p, Object... objects) { }
}