[FIR] Fix synthetic property is not var due to Nullable on parameter

Synthetic property is var when it have setter. The latter is set up
in property when its parameter type is equal to getter return type. In
case of using @Nullable, parameter type of setter is not equal to
return type of getter, because the latter is flexible type. So to fix
this verification should occur using not null types

#KT-39076 Fixed
This commit is contained in:
Ivan Kylchik
2020-06-30 21:40:22 +03:00
parent 48c5f48af0
commit 574aa0affe
6 changed files with 24 additions and 5 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
// TARGET_BACKEND: JVM
// FILE: JavaClass.java