9 lines
129 B
Kotlin
Vendored
9 lines
129 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun doSomething<T>(a: T) {}
|
|
|
|
fun main(x: Int) {
|
|
if (x !is Int) {
|
|
doSomething("test")
|
|
}
|
|
}
|