mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
11 lines
253 B
Kotlin
11 lines
253 B
Kotlin
// "Create parameter 'foo'" "false"
|
|
// ACTION: Convert to expression body
|
|
// ACTION: Create local variable 'foo'
|
|
// ACTION: Create property 'foo'
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
object A {
|
|
val test: Int get() {
|
|
return <caret>foo
|
|
}
|
|
} |