// WITH_STDLIB @JvmInline value class A(val x: Int) { constructor(x: UInt): this(x.toInt()) } data class B(val x: UInt) { constructor(x: Int) : this(x.toUInt()) }