New J2K: do not create erroneous conversion from Java accessors to property

#KT-38004 fixed
This commit is contained in:
Ilya Kirillov
2020-04-14 21:58:33 +03:00
parent d1a59e8da6
commit e4a721d03e
2 changed files with 1 additions and 9 deletions
@@ -2,6 +2,6 @@ package test;
class JavaClass {
void foo(AAA a) {
a.x = a.x + 1;
a.setX(a.getX() + 1);
}
}