Files
kotlin-fork/idea/testData/decompiler/decompiledTextJvm/EnumWithQuotes/EnumWithQuotes.kt
T
2020-03-11 15:41:41 +03:00

9 lines
157 B
Kotlin
Vendored

package test
class EnumWithQuotes {
internal class B {
private enum class Zoo {
Bear, `Bear+`, `Polar Bear`, Panda
}
}
}