Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/NestedEnum.B.kt
T
2014-09-01 12:32:50 +04:00

7 lines
123 B
Kotlin
Vendored

fun main(args: Array<String>) {
val str = aaa.A.E.A
if (str.toString() != "A") {
throw Exception()
}
}