blob: 1bed62651e838626f13a2e7d8251b81477f16c13 [file]
class Foo {
fun bar(name: Int) {}
}
fun usage(foo: Foo) {
foo?.bar(na<caret>me = 10)
}