Files
kotlin-fork/compiler/testData/codegen/regressions/kt2626.kt
T
2012-09-11 15:51:16 +03:00

10 lines
182 B
Kotlin

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