mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
10 lines
206 B
Kotlin
10 lines
206 B
Kotlin
// "Create parameter 'foo'" "false"
|
|
// ACTION: Create extension property 'foo'
|
|
// ACTION: Create property 'foo'
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
class A
|
|
|
|
fun test(a: A) {
|
|
val t: Int = a.<caret>foo
|
|
} |