URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [assign.java] - Rev 781
Go to most recent revision | Compare with Previous | Blame | View Log
// Test for an array assignment bug we've had. public class assign { public static class base { } public static class derived extends base { } public static void main(String[] args) { base[][] x1 = new base[3][3]; derived[] x2 = new derived[3]; x1[0] = x2; } }
Go to most recent revision | Compare with Previous | Blame | View Log