8 lines
236 B
Kotlin
Vendored
8 lines
236 B
Kotlin
Vendored
// "Make 'x' const" "false"
|
|
// ACTION: Add getter
|
|
// ACTION: Convert property initializer to getter
|
|
// ACTION: Convert property to function
|
|
// ACTION: Convert to lazy property
|
|
// ACTION: Specify type explicitly
|
|
|
|
actual val x<caret> = 42 |