blob: c6ee346323141f10544f9be9216670174f0e76fa [file] [log] [blame]
class TestInitializeInTry {
var x: Any? = null
private var y: Any? = null
init {
try {
x = Any()
y = Any()
} catch (e: Exception) {
e.printStackTrace()
}
x.toString()
y.toString()
}
}