Files
kotlin-fork/compiler
pyos 2ae06a8d46 FIR DFA: when removing a variable, move type statements about dependents
val c = C("...")
  val d = c
  if (c.x == null) return
  c.x.length // c.x has type String
  d.x.length // d.x -> c.x through d -> c
  c = C(null) // remove alias d -> c
  d.x.length // info from c.x moved to d.x

^KT-54824 Fixed
2022-11-22 15:44:26 +00:00
..
2022-10-31 16:02:50 +00:00
2022-08-11 15:22:35 +03:00
2022-11-18 11:40:09 +01:00
2022-11-22 14:43:53 +00:00