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