mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
11 lines
157 B
Plaintext
Vendored
11 lines
157 B
Plaintext
Vendored
// "Add new line after annotations" "true"
|
|
|
|
@Target(AnnotationTarget.EXPRESSION)
|
|
annotation class Ann
|
|
|
|
fun foo(y: Int) {
|
|
var x = 1
|
|
@Ann
|
|
x += 2
|
|
}
|