9f67fe2fe3
Rename/remove some obsolete test cases
20 lines
219 B
Kotlin
Vendored
20 lines
219 B
Kotlin
Vendored
// FILE: A.kt
|
|
|
|
package aaa
|
|
|
|
class A {
|
|
enum class E {
|
|
A
|
|
}
|
|
}
|
|
|
|
// FILE: B.kt
|
|
|
|
fun box(): String {
|
|
val str = aaa.A.E.A
|
|
if (str.toString() != "A") {
|
|
return "Fail $str"
|
|
}
|
|
return "OK"
|
|
}
|