Files
kotlin-fork/nj2k/testData/newJ2k/annotations/annotationInterface4.kt
T
Dmitry Gridin b40a888f1d Formatter: fix line break between declarations with annotations
#KT-35093 Fixed
#KT-35106 Fixed
2019-11-26 19:40:51 +07:00

13 lines
253 B
Kotlin
Vendored

internal annotation class Anon(vararg val value: String, val x: Int = 1)
@Anon("a", "b")
internal interface I1
@Anon("c", "d", x = 1)
internal interface I2
@Anon("c", "d", x = 1)
internal interface I3
@Anon(value = ["c", "d"])
internal interface I4