mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
19 lines
236 B
Kotlin
Vendored
19 lines
236 B
Kotlin
Vendored
package test
|
|
|
|
import kotlin.platform.*
|
|
|
|
annotation class A(val s: String)
|
|
|
|
@platformName("bar")
|
|
A("1")
|
|
fun foo() = "foo"
|
|
|
|
A("2")
|
|
var v: Int = 1
|
|
@platformName("vget")
|
|
@A("3")
|
|
get
|
|
@platformName("vset")
|
|
@A("4")
|
|
set
|