mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
14 lines
186 B
Plaintext
Vendored
14 lines
186 B
Plaintext
Vendored
// "Create member property 'Foo.foo'" "true"
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
expect class Foo {
|
|
val foo: Int
|
|
}
|
|
|
|
fun test(f: Foo) {
|
|
takeInt(f.foo)
|
|
}
|
|
|
|
fun takeInt(n: Int) {
|
|
|
|
} |