J2K: got rid from Converter.convertElement + fixed local classes conversion

#KT-5202 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-07-11 20:54:40 +04:00
parent 930022aaac
commit ab3eca92db
8 changed files with 40 additions and 75 deletions
@@ -1,9 +1,8 @@
//file
class C {
String foo() {
class Local {
String foo() { return null; }
};
}
new Local().foo();
return "";
}
@@ -0,0 +1,11 @@
class C {
fun foo(): String {
class Local {
fun foo(): String? {
return null
}
}
Local().foo()
return ""
}
}