mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
10 lines
173 B
Plaintext
Vendored
10 lines
173 B
Plaintext
Vendored
// "Create member function 'Foo.foo'" "true"
|
|
// ERROR: Unresolved reference: foo
|
|
|
|
expect class Foo {
|
|
fun foo(s: String, i: Int)
|
|
}
|
|
|
|
fun test(f: Foo) {
|
|
f.foo("a", 1)
|
|
} |