• Source
    1.  
    2. class Ideone
    3. {
    4. public static void main (String[] args) throws java.lang.Exception
    5. {
    6. //lower bit to higher bit conversion
    7. //Implicit casting
    8. //No loss of data
    9. byte x = 4;
    10. int y = x;
    11. }
    12. }