// IS_APPLICABLE: false class Foo { fun foo(x: Int = 0, y: Int = 0) { } } fun bar(baz: Foo) { baz.foo(y = 1) }