Files
kotlin-fork/compiler/testData/diagnostics/tests/sourceCompatibility/apiVersion/annotations.kt
T
2019-02-14 12:31:42 +03:00

12 lines
313 B
Kotlin
Vendored

// !API_VERSION: 1.0
@SinceKotlin("1.1")
annotation class Anno1(val s: String)
annotation class Anno2 @SinceKotlin("1.1") constructor()
@<!API_NOT_AVAILABLE, DEBUG_INFO_UNRESOLVED_WITH_TARGET, UNRESOLVED_REFERENCE!>Anno1<!>("")
@<!DEBUG_INFO_UNRESOLVED_WITH_TARGET, UNRESOLVED_REFERENCE!>Anno2<!>
fun t1() {}