New J2K: correctly create AST for Java call of Kotlin data class derived members

#KT-32604 fixed
This commit is contained in:
Ilya Kirillov
2019-07-15 17:55:43 +03:00
parent d29d7fb257
commit b7917978b8
6 changed files with 35 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
public class Foo {
public static void main(String[] args) {
Person person = new Person("M", "S");
System.out.println(person.toString());
}
}