13 lines
150 B
Plaintext
Vendored
13 lines
150 B
Plaintext
Vendored
// "Create member property 'Foo.foo'" "true"
|
|
|
|
expect class Foo {
|
|
val foo: Int
|
|
}
|
|
|
|
fun test(f: Foo) {
|
|
takeInt(f.foo)
|
|
}
|
|
|
|
fun takeInt(n: Int) {
|
|
|
|
} |