J2K: Get nullability from variable initializer when converting call

#KT-11534 In Progress
This commit is contained in:
Natalia Ukhorskaya
2016-03-25 19:49:49 +03:00
parent f3a3c0886f
commit 98c3b39f7e
16 changed files with 257 additions and 9 deletions
@@ -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?