9f67fe2fe3
Rename/remove some obsolete test cases
18 lines
202 B
Kotlin
Vendored
18 lines
202 B
Kotlin
Vendored
// FILE: A.kt
|
|
|
|
package aaa
|
|
|
|
enum class E {
|
|
TRIVIAL_ENTRY,
|
|
SUBCLASS { }
|
|
}
|
|
|
|
// FILE: B.kt
|
|
|
|
import aaa.E
|
|
|
|
fun box(): String {
|
|
if (E.TRIVIAL_ENTRY == E.SUBCLASS) return "Fail"
|
|
return "OK"
|
|
}
|