Java to Kotlin converter: fixed two similar bugs
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
//file
|
||||
class Base {
|
||||
Base(Object o, int l){}
|
||||
}
|
||||
|
||||
class C extends Base {
|
||||
private final String string;
|
||||
|
||||
public C(String s) {
|
||||
super(s, s.length());
|
||||
this.string = s;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user