Files
kotlin/compiler/testData/codegen/box/callableReference/bound/enumEntryMember.kt
2019-11-19 11:00:09 +03:00

19 lines
309 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// IGNORE_BACKEND: JS
enum class E {
A, B;
fun foo() = this.name
}
fun box(): String {
val f = E.A::foo
val ef = E::foo
if (f() != "A") return "Fail 1: ${f()}"
if (f == E.B::foo) return "Fail 2"
if (ef != E::foo) return "Fail 3"
return "OK"
}