Skip to content

Instantly share code, notes, and snippets.

@omochi
Last active October 5, 2016 14:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save omochi/783f5d28ce572e052f9a32839c7c3fa3 to your computer and use it in GitHub Desktop.
Save omochi/783f5d28ce572e052f9a32839c7c3fa3 to your computer and use it in GitHub Desktop.
class A() {
init {
val s: String = getStr()
println("${s.length}") // java.lang.NullPointerException
}
fun getStr(): String {
return str
}
private val str: String = "aaa"
}
fun main(args: Array<String>) {
A()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment