Files
kotlin-fork/idea/testData/intentions/branched/ifWhen/whenToIf/wrongIsAndInNoSubject.kt.after
T
2015-12-17 11:11:24 +03:00

9 lines
243 B
Plaintext
Vendored

// ERROR: Expected condition of type kotlin.Boolean
// ERROR: Expected condition of type kotlin.Boolean
// SKIP_ERRORS_AFTER
fun test(n: Int): String {
return if (_ is String) "String"
else if (_ in 1..10) "1..10"
else "unknown"
}