--- a +++ b/trunk/php-java-bridge/tests.php4/Array6.java @@ -0,0 +1,13 @@ +public class Array6 { + public static Object[][][][][][] test() { + Object[][][][][][] testobj = new Object[2][2][2][2][2][2]; + testobj[0][0][0][0][0][1]="1"; + testobj[0][0][0][0][1][0]="2"; + testobj[0][0][0][1][0][0]="3"; + testobj[0][0][1][0][0][0]="4"; + testobj[0][1][0][0][0][0]="5"; + testobj[1][0][0][0][0][0]="6"; + return testobj; + } +} +