Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/KT14130.kt.after
T
2016-10-18 11:56:59 +03:00

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