Fix nullability propagation in inline class type mapping
#KT-27096 See https://jetbrains.slack.com/archives/C06E082M6/p1537949572000100
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
// !LANGUAGE: +InlineClasses
|
||||
// IGNORE_BACKEND: JVM_IR
|
||||
|
||||
inline class Z1(val x: Int?)
|
||||
inline class Z2(val z: Z1)
|
||||
inline class ZN(val z: Z1?)
|
||||
|
||||
fun wrap1(n: Int): Z1? = if (n < 0) null else Z1(n)
|
||||
fun wrap2(n: Int): Z2? = if (n < 0) null else Z2(Z1(n))
|
||||
fun wrapN(n: Int): ZN? = if (n < 0) null else ZN(Z1(n))
|
||||
|
||||
fun box(): String {
|
||||
if (wrap1(-1) != null) throw AssertionError()
|
||||
if (wrap1(42) == null) throw AssertionError()
|
||||
if (wrap1(42)!!.x != 42) throw AssertionError()
|
||||
|
||||
if (wrap2(-1) != null) throw AssertionError()
|
||||
if (wrap2(42) == null) throw AssertionError()
|
||||
if (wrap2(42)!!.z.x != 42) throw AssertionError()
|
||||
|
||||
if (wrapN(-1) != null) throw AssertionError()
|
||||
if (wrapN(42) == null) throw AssertionError()
|
||||
if (wrapN(42)!!.z!!.x != 42) throw AssertionError()
|
||||
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user