mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
20 lines
294 B
Java
20 lines
294 B
Java
// 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;
|
|
}
|
|
}
|