Files
kotlin-fork/idea/testData/multiModuleQuickFix/expectEnum/jvm/My.kt
T
2018-11-21 15:13:01 +03:00

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
}