mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
20 lines
479 B
Kotlin
Vendored
20 lines
479 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
// IGNORE_BACKEND_FIR: JVM_IR
|
|
|
|
inline class Z(val value: Int)
|
|
|
|
fun eq(a: Z?, b: Z) = a == b
|
|
|
|
fun eqq(a: Z, b: Z?) = a == b
|
|
|
|
fun box(): String {
|
|
if (!eq(Z(1), Z(1))) throw AssertionError()
|
|
if (eq(Z(1), Z(2))) throw AssertionError()
|
|
if (eq(null, Z(0))) throw AssertionError()
|
|
|
|
if (!eqq(Z(1), Z(1))) throw AssertionError()
|
|
if (eqq(Z(1), Z(2))) throw AssertionError()
|
|
if (eqq(Z(0), null)) throw AssertionError()
|
|
|
|
return "OK"
|
|
} |