blob: cf794d7876a78089932d8d8c0d161fc9eb1064db [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 @Ann2("")
x += 2
}