Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt282.kt
T
2015-09-25 19:20:20 +03:00

19 lines
462 B
Kotlin
Vendored

// KT-282 Nullability in extension functions and in binary calls
class Set {
operator fun contains(<!UNUSED_PARAMETER!>x<!> : Int) : Boolean = true
}
operator fun Set?.plus(<!UNUSED_PARAMETER!>x<!> : Int) : Int = 1
operator fun Int?.contains(<!UNUSED_PARAMETER!>x<!> : Int) : Boolean = false
fun f(): Unit {
var set : Set? = null
val i : Int? = null
i <!UNSAFE_INFIX_CALL!>+<!> 1
set + 1
1 <!UNSAFE_INFIX_CALL!>in<!> set
1 in 2
}