b770e5d02f
Although being a 'KtClass' in the PSI, 'KtEnumEntry' is a callable in Analysis API, and its direct members should also be treated as local.
7 lines
96 B
Kotlin
7 lines
96 B
Kotlin
enum class Foo {
|
|
VALUE {
|
|
/*PLACE*/fun run() = 1
|
|
}
|
|
}
|
|
|
|
/*ONAIR*/fun box(): Int = 0 |