Reports casts that will never succeed.
fun foo(s: String) { println(s as Int)}fun bar(s: String) { println(s as? Int)}
fun foo(s: Any) { println(s as Int)}
The content on this page is adapted from the Detekt Docs. Copyright ©2022 The Detekt Team. All rights reserved. https://detekt.dev/comments.html