mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
7 lines
145 B
Kotlin
Vendored
7 lines
145 B
Kotlin
Vendored
// "Convert to enum class" "true"
|
|
|
|
actual sealed class <caret>E {
|
|
actual object A : E()
|
|
actual object B : E()
|
|
actual object C : E()
|
|
} |