8 lines
140 B
Kotlin
Vendored
8 lines
140 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
private enum class MethodKind {
|
|
INSTANCE,
|
|
STATIC
|
|
}
|
|
|
|
private fun MethodKind.hasThis() = this == MethodKind.INSTANCE
|