Currently, type conversion is not supported: ``` long x = 1; ``` gives error: ``` Exception in thread "Thread-0" java.lang.RuntimeException ``` similar: ``` long x = 1L; x = x + 1; ```