val Array.firstElement: String get() = get(0) fun box(): String { val p = Array::firstElement return p.get(arrayOf("OK", "Fail")) }