mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
12 lines
170 B
Kotlin
Vendored
12 lines
170 B
Kotlin
Vendored
// !API_VERSION: 1.0
|
|
|
|
@SinceKotlin("1.1")
|
|
annotation class Anno1(val s: String)
|
|
|
|
annotation class Anno2 @SinceKotlin("1.1") constructor()
|
|
|
|
|
|
@Anno1("")
|
|
@Anno2
|
|
fun t1() {}
|