Files
kotlin-fork/compiler/testData/ir/irText/in.kt
T
2016-10-18 09:08:12 +03:00

4 lines
189 B
Kotlin
Vendored

fun test1(a: Any, x: Collection<Any>) = a in x
fun test2(a: Any, x: Collection<Any>) = a !in x
fun <T> test3(a: T, x: Collection<T>) = a in x
fun <T> test4(a: T, x: Collection<T>) = a !in x