Files
kotlin/compiler/testData/codegen/box/callableReference/bound/enumEntryMember.kt
2018-08-09 14:22:50 +03:00

18 lines
279 B
Kotlin
Vendored

// 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"
}