mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
8 lines
168 B
Kotlin
Vendored
8 lines
168 B
Kotlin
Vendored
// "Create parameter 'x'" "false"
|
|
// ERROR: Unresolved reference: x
|
|
// ACTION: Create property 'x'
|
|
// ACTION: Rename reference
|
|
|
|
enum class E(n: Int) {
|
|
X(<caret>x)
|
|
} |