mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
10 lines
155 B
Plaintext
Vendored
10 lines
155 B
Plaintext
Vendored
// "Create member property 'Foo.foo'" "true"
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
expect class Foo {
|
|
var foo: Int
|
|
}
|
|
|
|
fun test(f: Foo) {
|
|
f.foo = 1
|
|
} |