mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
11 lines
293 B
Kotlin
Vendored
11 lines
293 B
Kotlin
Vendored
// "Create local variable 'foo'" "false"
|
|
// ACTION: Convert property initializer to getter
|
|
// ACTION: Create parameter 'foo'
|
|
// ACTION: Create property 'foo'
|
|
// ACTION: Rename reference
|
|
// ACTION: Move to constructor
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
class A {
|
|
val t: Int = <caret>foo
|
|
} |