12 lines
313 B
Kotlin
Vendored
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() {}
|