17 lines
268 B
Plaintext
Vendored
17 lines
268 B
Plaintext
Vendored
enum class A {
|
|
ONE, TWO
|
|
|
|
fun invoke(i: Int) = i
|
|
}
|
|
|
|
fun test() = A.<caret>ONE(1)
|
|
|
|
|
|
Resolved call:
|
|
|
|
Resulting descriptor: enum entry ONE defined in A
|
|
|
|
Explicit receiver kind = NO_EXPLICIT_RECEIVER
|
|
Dispatch receiver = NO_RECEIVER
|
|
Extension receiver = NO_RECEIVER
|