mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
package test
|
|
|
|
enum class En(val b: Boolean = true, val i: Int = 0) {
|
|
E1: En()
|
|
E2: En(true, 1)
|
|
E3: En(i = 2)
|
|
}
|