12 lines
196 B
Plaintext
Vendored
12 lines
196 B
Plaintext
Vendored
// "Add new line after annotations" "true"
|
|
|
|
@Target(AnnotationTarget.EXPRESSION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class Ann
|
|
|
|
fun foo(y: Int) {
|
|
var x = 1
|
|
@Ann
|
|
x += 2
|
|
}
|