public class MainClass { public static void main(String[] argv) { byte[] b = new byte[3]; int[] a = new int[3];
a = b;
System.out.println();
}
}
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Type mismatch: cannot convert from byte[] to int[]
at MainClass.main(MainClass.java:6)