9a267176f5
Also, this change adds SinceKotlin and Java.Deprecated to this phase It fixes some problems with API_NOT_AVAILABLE, so now it is closer to K1 ^KT-57648 Fixed ^KT-55723 Fixed
12 lines
221 B
Kotlin
Vendored
12 lines
221 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!>Anno1<!>("")
|
|
@<!UNRESOLVED_REFERENCE!>Anno2<!>
|
|
fun t1() {}
|