Files
kotlin-fork/compiler/testData/diagnostics/tests/IsExpressions.jet
T

7 lines
96 B
Plaintext

fun test() {
if (1 is Int) {
if (1 is <!INCOMPATIBLE_TYPES!>Boolean<!>) {
}
}
}