11 lines
155 B
Kotlin
Vendored
11 lines
155 B
Kotlin
Vendored
open class Foo {
|
|
fun foo(a: IntArray) {}
|
|
fun foo(a: Int, b: Int) {}
|
|
}
|
|
|
|
fun Foo.foo(i: Int) {}
|
|
fun Foo.foo() {}
|
|
|
|
fun test() {
|
|
Foo().foo(bar())
|
|
} |