Files
kotlin-fork/compiler/testData/asJava/ultraLightScripts/FunsPropsAndFields.kts
T
2020-05-12 17:04:15 +03:00

9 lines
117 B
Kotlin
Vendored

fun testFun(i: Int): String = i.toString()
val testPropVal = 42
var testPropVar = 42
@JvmField
val testField = 42