21c2268f70
Many incorrect tests fixed
9 lines
138 B
Kotlin
Vendored
9 lines
138 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun <T> doSomething(a: T) {}
|
|
|
|
fun main(x: Int) {
|
|
if (x <caret>!in 5..6) {
|
|
doSomething("test")
|
|
}
|
|
}
|