fork(4) download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. int c = 88L; //Copilation fail
  6. System.out.println(c);
  7. }
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:5: error: incompatible types: possible lossy conversion from long to int
		int c = 88L; //Copilation fail
		        ^
1 error
stdout
Standard output is empty