Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
idea-completion
/
testData
/
handlers
/
basic
/
KT14130.kt.after
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