Files
kotlin/compiler/testData/codegen/box/classes/kt2626.kt
2018-07-23 15:08:18 +03:00

11 lines
184 B
Kotlin
Vendored

package example2
fun box() = Context.OsType.OK.toString()
object Context
{
public enum class OsType {
WIN2000, WINDOWS, MACOSX, LINUX, OTHER, OK;
}
}