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