blob: 396026bd5fe3904da0c8b42e11f2beb2bef3ce84 [file] [log] [blame]
class CharToString {
private val value: String? = null
fun test(): String {
return '"'.toString() + value + '"'.toString()
}
}