Files
kotlin-fork/idea/testData/multiModuleQuickFix/createExpect/innerEnum/common/My.kt.after
T
2019-08-27 17:26:08 +07:00

12 lines
196 B
Plaintext
Vendored

expect class <caret>My {
class Middle {
class Inner() {
enum class MyEnum {
FOO, TEST;
fun check(): String
}
}
}
}