9 lines
119 B
Plaintext
Vendored
9 lines
119 B
Plaintext
Vendored
// "Create member property 'Foo.foo'" "true"
|
|
|
|
expect class Foo {
|
|
var foo: Int
|
|
}
|
|
|
|
fun test(f: Foo) {
|
|
f.foo = 1
|
|
} |