// "Add new line after annotations" "true" @Target(AnnotationTarget.EXPRESSION) @Retention(AnnotationRetention.SOURCE) annotation class Ann @Target(AnnotationTarget.EXPRESSION) @Retention(AnnotationRetention.SOURCE) annotation class Ann2(val x: String) fun foo(y: Int) { var x = 1 @Ann // abc @Ann2("") /* abc2*/ x += 2 }