Files
kotlin/compiler/testData/loadJava/compiledKotlinWithStdlib/platformNames/functionName.kt
Yan Zhulanow 2ce9903356 Fix tests
2015-08-31 15:33:13 +03:00

19 lines
243 B
Kotlin
Vendored

package test
import kotlin.platform.*
annotation class A(val s: String)
@platformName("bar")
A("1")
fun foo() = "foo"
@field:A("2")
var v: Int = 1
@platformName("vget")
@A("3")
get
@platformName("vset")
@A("4")
set