Not sure if I am chasing ghosts but on my local ma...
# announcements
d
Not sure if I am chasing ghosts but on my local machine as well as on our CI
1L.rem(200) == 0
compiles without errors while it should fail because rem returns Long. Using Kotlin playground the code does not compile as expected. Any idea whats going on?
org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar:1.4.30:compile
n
for me using
kotlinc -e '1L.rem(200) == 0'
from the command line, I get a compile error as well (using 1.4.30 and bot hwith and w/o
-Xuse-ir
)