Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
literalExpression
/
charToNumber.kt
blob: bb9e46c08ae70fca5a5afa478c4bfc43a69bf469 [
file
] [
log
] [
blame
]
class
CharToNumber
{
private
val b
=
'c'
.
toByte
()
private
val s
=
'c'
.
toShort
()
private
val i
=
'c'
.
toInt
()
private
val l
=
'c'
.
toLong
()
private
val f
=
'c'
.
toFloat
()
private
val d
=
'c'
.
toDouble
()
}