I think I have found a bug when using an inline cl...
# stdlib
a
I think I have found a bug when using an inline class that contains an inline class:
Copy code
@ExperimentalUnsignedTypes
fun main(args: Array<String>) {
    val x = Id(1212u)
    println(x)
    println(x::class.simpleName)
}

@ExperimentalUnsignedTypes
@Suppress("EXPERIMENTAL_FEATURE_WARNING")
inline class Id(private val v: UInt)
Gives me this output:
Copy code
org.aregevdev.kotlinstuff.Id@2503dbd3
Int
Expected to print the actual Int value, not the java object string deceleration