df
02/11/2021, 2:45 PM1L.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
nkiesel
02/11/2021, 10:20 PMkotlinc -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
)