blob: 8c1655d06244783c03f56b7569da41d43bef92de [file] [log] [blame]
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())
}