Files
kotlin-fork/j2k/testData/fileOrElement/literalExpression/char.kt
T
2016-10-12 18:16:15 +03:00

8 lines
126 B
Kotlin
Vendored

internal class Test {
private val c: Char = 0.toChar()
fun test() {
val c1 = 'c'
val c2 = 'C'
}
}