Skip to content

Instantly share code, notes, and snippets.

@qwert2603
Created November 8, 2018 10:45
Show Gist options
  • Save qwert2603/65f3201186a9ef01a408dad56e2b2fa7 to your computer and use it in GitHub Desktop.
Save qwert2603/65f3201186a9ef01a408dad56e2b2fa7 to your computer and use it in GitHub Desktop.
fun getString(): String {
null?.let { return "fish" }
}
fun main() {
println(getString().length)
}
@qwert2603
Copy link
Author

Exception in thread "main" java.lang.NullPointerException
at Kotlin_npeKt.main(kotlin_npe.kt:6)
at Kotlin_npeKt.main(kotlin_npe.kt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment