blob: 1a4aaaa55f3562ffef913c1f2ae92785dcdd425d [file] [log] [blame]
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann2(val x: String)
fun foo(y: Int) {
var x = 1
@Ann // abc
@Ann2("") /* abc2*/ x<caret> += 2
}