Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/KotlinPropertyAsAnnotationParameter.A.kt
T
2014-03-13 10:07:10 +04:00

21 lines
258 B
Kotlin

package a
val i = 2
val s = 2.toShort()
val f = 2.0.toFloat()
val d = 2.0
val l = 2L
val b = 2.toByte()
val bool = true
val c = 'c'
val str = "str"
val i2 = i
val s2 = s
val f2 = f
val d2 = d
val l2 = l
val b2 = b
val bool2 = bool
val c2 = c
val str2 = str