publicclass MainClass {
publicstaticvoid main(String[] argv) {
byte[] b = newbyte[3];
int[] a = newint[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)