Can you make a repro for the problem? I tried this...
# android
o
Can you make a repro for the problem? I tried this:
Copy code
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")
    }
Works