10 lines
186 B
Kotlin
Vendored
10 lines
186 B
Kotlin
Vendored
// "Create expected enum class in common module testModule_Common" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
actual enum class <caret>My {
|
|
FIRST,
|
|
SECOND,
|
|
LAST;
|
|
|
|
val num: Int get() = 42
|
|
} |