Files
kotlin-fork/j2k/testData/fileOrElement/literalExpression/charToNumber.kt
T

8 lines
247 B
Kotlin
Vendored

class CharToNumber {
private val b: Byte = 'c'.toByte()
private val s: Short = 'c'.toShort()
private val i: Int = 'c'.toInt()
private val l: Long = 'c'.toLong()
private val f = 'c'.toFloat()
private val d = 'c'.toDouble()
}