14 lines
239 B
Kotlin
Vendored
14 lines
239 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
// WITH_RUNTIME
|
|
// KJS_WITH_FULL_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"
|
|
} |