blob: a03d505df4c63856d86e1d08aa3b870d4344c5ff [file]
// OPT_IN: kotlin.contracts.ExperimentalContracts
package test
import kotlin.contracts.*
fun Any?.isNotNull(): Boolean {
contract {
returns(true) implies (this@isNotNull != null)
}
return this != null
}