mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
12 lines
172 B
Kotlin
Vendored
12 lines
172 B
Kotlin
Vendored
// "Create member property 'Foo.foo'" "true"
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
expect class Foo
|
|
|
|
fun test(f: Foo) {
|
|
takeInt(f.<caret>foo)
|
|
}
|
|
|
|
fun takeInt(n: Int) {
|
|
|
|
} |