// LANGUAGE_VERSION: 1.0 // WITH_RUNTIME // FULL_JDK class A(val x: List) : List by x fun box(): String { return A(listOf("OK"))[0] }