Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/annotations/annotationApplicability/annotationsOnUseSiteTargets.fir.kt
T

14 lines
167 B
Kotlin
Vendored

interface Test {
@get:JvmStatic
val a: Int
@get:JvmName("1")
val b: Int
@get:Synchronized
val c: Int
@get:JvmOverloads
val d: Int
}