mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
8 lines
141 B
Kotlin
Vendored
8 lines
141 B
Kotlin
Vendored
// "Create member property 'Foo.foo'" "true"
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
expect class Foo
|
|
|
|
fun test(f: Foo) {
|
|
f.<caret>foo = 1
|
|
} |