class CharToString { private val value: String? = null fun test(): String { return '"'.toString() + value + '"'.toString() } }