Kotlin - Basics and JVM Runtime
Identify the issue in this Kotlin code snippet:
fun main() {
var message: String = "Hello"
message = null
println(message)
}