Java to Kotlin converter: fixed two similar bugs

This commit is contained in:
Valentin Kipyatkov
2014-06-27 20:25:20 +04:00
parent 806cc1e434
commit f8261a8b6e
7 changed files with 88 additions and 29 deletions
@@ -0,0 +1,12 @@
//file
class C {
private final String string;
public C(String s, int a) {
this.string = s;
}
public C(String s) {
this(s, s.length());
}
}