mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
9 lines
181 B
Kotlin
9 lines
181 B
Kotlin
// "Create parameter 'foo'" "false"
|
|
// ACTION: Create property 'foo'
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
class A {
|
|
companion object {
|
|
val test: Int = <caret>foo
|
|
}
|
|
} |