blob: 4d3ab296c56882b6a2fe639cce6dfe27824d0216 [file]
// CODE_STYLE_SETTING: ALIGN_MULTILINE_PARAMETERS_IN_CALLS = true
package test
interface Foo {
companion object {
val EMPTY = object : Foo {}
}
}
fun test(foo: Foo, bar: String) {}
fun test2() {
test(Foo.EMPTY<caret>, "")
}
// ELEMENT: EMPTY