J2K: Get nullability from variable initializer when converting call
#KT-11534 In Progress
This commit is contained in:
@@ -3,7 +3,7 @@ internal abstract class C {
|
||||
val s1 = f()!!
|
||||
|
||||
val s2 = g() ?: error("g should not return null")
|
||||
val h = s2!!.hashCode()
|
||||
val h = s2.hashCode()
|
||||
}
|
||||
|
||||
internal abstract fun f(): String?
|
||||
|
||||
Reference in New Issue
Block a user