Files
kotlin/idea/testData/quickfix/variables/changeToPropertyAccess/enumEntryCall.kt

8 lines
91 B
Kotlin
Vendored

// "Remove invocation" "true"
enum class Test {
A
}
fun test() {
Test.A<caret>()
}