Files
kotlin-fork/j2k/testData/fileOrElement/annotations/annotationInterface4.kt
T
2015-05-28 00:17:04 +03:00

14 lines
226 B
Kotlin

annotation class Anon(public vararg val value: String, public val x: Int = 1)
Anon("a", "b")
interface I1
Anon("c", "d", x = 1)
interface I2
Anon("c", "d", x = 1)
interface I3
Anon(value = *arrayOf("c", "d"))
interface I4