84ccf412cb
#KT-32162
41 lines
1.3 KiB
Kotlin
Vendored
41 lines
1.3 KiB
Kotlin
Vendored
// WITH_STDLIB
|
|
// WORKS_WHEN_VALUE_CLASS
|
|
// IGNORE_BACKEND: JVM
|
|
// LANGUAGE: +ValueClasses, +GenericInlineClassParameter
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class Z1<T: Int>(val x: T)
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class Z2<T: Z1<Int>>(val z1: T)
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class ZN<TN: Z1<Int>>(val z1: TN?)
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class ZN2<T: ZN<Z1<Int>>>(val zn: T)
|
|
|
|
fun wrap1(n: Int): Z1<Int>? = if (n < 0) null else Z1(n)
|
|
fun wrap2(n: Int): Z2<Z1<Int>>? = if (n < 0) null else Z2(Z1(n))
|
|
fun wrapN(n: Int): ZN<Z1<Int>>? = if (n < 0) null else ZN(Z1(n))
|
|
fun wrapN2(n: Int): ZN2<ZN<Z1<Int>>>? = if (n < 0) null else ZN2(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)!!.z1.x != 42) throw AssertionError()
|
|
|
|
if (wrapN(-1) != null) throw AssertionError()
|
|
if (wrapN(42) == null) throw AssertionError()
|
|
if (wrapN(42)!!.z1!!.x != 42) throw AssertionError()
|
|
|
|
if (wrapN2(-1) != null) throw AssertionError()
|
|
if (wrapN2(42) == null) throw AssertionError()
|
|
if (wrapN2(42)!!.zn.z1!!.x != 42) throw AssertionError()
|
|
|
|
return "OK"
|
|
} |