Support unboxing of inline classes in elvis

This commit is contained in:
Mikhail Zarechenskiy
2018-02-07 06:11:15 +03:00
parent fefcddc803
commit 396cc7d02b
8 changed files with 74 additions and 3 deletions
@@ -0,0 +1,19 @@
// !LANGUAGE: +InlineClasses
inline class UInt(private val u: Int) {
fun asResult() = u
}
fun test(x1: UInt?, x2: UInt?, y: UInt, z: UInt?): Int {
val a = x1 ?: y
val b = x1 ?: z!!
val c = x1 ?: x2 ?: y
return a.asResult() + b.asResult() + c.asResult()
}
fun box(): String {
val u1 = UInt(10)
val u2 = UInt(20)
val r = test(null, null, u1, u2)
return if (r != 40) "fail: $r" else "OK"
}