7ab2d0c951
#KT-13810 Fixed
16 lines
265 B
Plaintext
Vendored
16 lines
265 B
Plaintext
Vendored
// 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 |