mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
218 B
Plaintext
Vendored
9 lines
218 B
Plaintext
Vendored
>>> enum class E {
|
|
... FIRST,
|
|
... SECOND
|
|
... }
|
|
>>> E.values().toList()
|
|
[FIRST, SECOND]
|
|
>>> E.FIRST.javaClass == E.SECOND.javaClass // check that no artificial classes are generated for simple enum entries
|
|
true
|