Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/hiddenConstructor/kt28855.kt
T
2021-11-03 18:50:06 +03:00

12 lines
185 B
Kotlin
Vendored

// WITH_RUNTIME
class C<T>(val x: T, vararg ys: UInt) {
val y0 = ys[0]
}
fun box(): String {
val c = C("a", 42u)
if (c.y0 != 42u) throw AssertionError()
return "OK"
}