// FIR_IDENTICAL // !DIAGNOSTICS: -UNREACHABLE_CODE interface Tr { var v: T } fun test(t: Tr) { // resolved as t.v = t.v + null!!, where type of right operand is String, // so TYPE_MISMATCH: String is not <: of Captured(out String) t.v += null!! }