Skip to content

Instantly share code, notes, and snippets.

@VovaStelmashchuk
Last active May 17, 2025 08:32
Show Gist options
  • Save VovaStelmashchuk/b0be75e1f46eda1f76e7528c743b5b67 to your computer and use it in GitHub Desktop.
Save VovaStelmashchuk/b0be75e1f46eda1f76e7528c743b5b67 to your computer and use it in GitHub Desktop.
The potential-bugs code
fun fooBad(a: Any?) {
val x: String? = a as String? // If 'a' is not String, ClassCastException will be thrown.
}
fun fooGood(a: Any?) {
val x: String? = a as? String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment