Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/IsExpression.kt
T
Dmitry Neverov cd24adac32 Detect redundant 'is' check
#KT-14187 Fixed
2017-05-15 11:24:35 +03:00

9 lines
205 B
Kotlin
Vendored

// !CHECK_TYPE
fun foo(x: Number) {
if (<!USELESS_IS_CHECK!>(x as Int) is Int<!>) {
checkSubtype<Int>(<!DEBUG_INFO_SMARTCAST!>x<!>)
}
checkSubtype<Int>(<!DEBUG_INFO_SMARTCAST!>x<!>)
}