J2K does not convert usages of java "get" methods into "[]" (explicit "operator" modifier is required)

This commit is contained in:
Valentin Kipyatkov
2015-10-17 12:06:53 +03:00
parent e7fa2cb776
commit fc10fa66be
5 changed files with 40 additions and 7 deletions
+6
View File
@@ -113,4 +113,10 @@ public class JavaClassDerivedFromKotlinClassWithProperties extends KotlinClassWi
@Override
public void setSomeVar2(String value) { }
}
public class JavaClass {
public int get(int p) {
return 0;
}
}