Files
kotlin-fork/idea/testData/quickfix/addNewLineAfterAnnotations/poorlyFormattedExpression.kt.after
T
2017-06-07 19:39:55 +02:00

11 lines
257 B
Plaintext
Vendored

// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
fun foo(y: IntArray) {
// Currently it calls reformatting of base expression, but it seems to be a minor issue
@Ann
y[0 + 9 * 4] = y[y [1]]
}