Files
kotlin/idea/testData/multiModuleQuickFix/enum/header/header.kt
Alexander Udalov d1cff41ce0 Treat nested class of header class as header
Note that the quick fix to implement header class works incorrectly when
that class has nested classes at the moment; this should be fixed
separately

 #KT-15494 Fixed
 #KT-18573 Fixed
2017-08-25 15:40:37 +03:00

10 lines
151 B
Kotlin
Vendored

// "Create header class implementation for platform JS" "true"
header enum class <caret>MyEnum {
FIRST,
SECOND,
LAST;
val num: Int
}