mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
15 lines
381 B
Kotlin
Vendored
15 lines
381 B
Kotlin
Vendored
enum class Foo(val a: Double = 1.0, val b: Double = 1.0) {
|
|
A(),
|
|
B(2.0, 2.0),
|
|
C(b = 2.0),
|
|
D(a = 2.0)
|
|
}
|
|
|
|
fun box(): String {
|
|
if (Foo.A.a != 1.0 || Foo.A.b != 1.0) return "fail"
|
|
if (Foo.B.a != 2.0 || Foo.B.b != 2.0) return "fail"
|
|
if (Foo.C.a != 1.0 || Foo.C.b != 2.0) return "fail"
|
|
if (Foo.D.a != 2.0 || Foo.D.b != 1.0) return "fail"
|
|
return "OK"
|
|
}
|