Files
kotlin-fork/idea/testData/checker/IsExpressions.jet
T
2011-05-13 17:07:21 +04:00

7 lines
90 B
Plaintext

fun test() {
if (1 is Int) {
if (<warning>1 is Boolean</warning>) {
}
}
}