[FIR2IR] Remove non-existent accessors from property references on Java fields

Rename `MissingFieldInJavaClass.kt` to `FieldsFromJavaClass.kt` to correspond its content

^KT-65722 Fixed
This commit is contained in:
Ivan Kochurkin
2024-02-23 11:22:44 +00:00
committed by Space Team
parent c1ea878e52
commit 1e388ad7dc
24 changed files with 192 additions and 105 deletions
@@ -0,0 +1,10 @@
fun f(j: J, x: X, j1: J1<String>) {
val jf: KMutableProperty0<Int> = j::f
val js: KMutableProperty0<Int> = J::s
val xf: KMutableProperty0<Int> = x::f
val xs: KMutableProperty0<Int> = X::s
val xf2: KMutableProperty0<Int> = x::f2
val xs2: KMutableProperty0<Int> = X::s2
val j1f: KMutableProperty0<@FlexibleNullability String?> = j1::f
}