Example: ``` var thing: Int? get() = Random().next...
# announcements
d
Example:
Copy code
var thing: Int? get() = Random().nextInt()
fun main(args: Array<String>) {
    val list = listOf(1, 2, 3)
    if (thing != null && thing in list) { // fails
        
    }
}