mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
210 B
Kotlin
Vendored
9 lines
210 B
Kotlin
Vendored
open class SomeClass(val some: Double, val other: Int, vararg val args: String) {
|
|
fun result() = args[1]
|
|
}
|
|
|
|
fun box(): String {
|
|
return object : SomeClass(3.14, 42, "No", "OK", "Yes") {
|
|
}.result()
|
|
}
|