330502a0a6
* "Create object" quick fix: do not suggest for enum #KT-22665 Fixed
15 lines
207 B
Kotlin
Vendored
15 lines
207 B
Kotlin
Vendored
// "Create enum constant 'A'" "false"
|
|
// ACTION: Convert to block body
|
|
// ACTION: Rename reference
|
|
// ERROR: Unresolved reference: A
|
|
package p
|
|
|
|
fun foo(): X = E.<caret>A
|
|
|
|
enum class E {
|
|
|
|
}
|
|
|
|
open class X {
|
|
|
|
} |