Files
kotlin-fork/compiler/testData/diagnostics/tests/cast/neverSucceeds/CastToNotNullSuper.kt
T
Svetlana Isakova a47729c626 KT-5455 Need warning about redundant type cast
#KT-5455 Fixed
2014-10-18 11:06:52 +04:00

8 lines
87 B
Kotlin
Vendored

open class A {
fun foo() {}
}
class B : A()
fun test(b: B?) {
(b as A).foo()
}