Ok, it fails with big enough value: ``` val id...
# android
o
Ok, it fails with big enough value:
Copy code
val id = 2364137526064485012L
    Observable.from(arrayOf(id)).subscribe {
        // id has now the value: 2364137526064485012
        assertTrue(it > 0, "This fails in Kotlin 1.0.1")
        assertTrue(it > 0L, "This succeeds in Kotlin 1.0.1")
    }