test/tools/javac/4917091/Test255.java

Thu, 31 Aug 2017 15:17:03 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:17:03 +0800
changeset 2525
2eb010b6cb22
parent 962
0ff2bbd38f10
parent 0
959103a6100f
permissions
-rw-r--r--

merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 */
aoqi@0 23
aoqi@0 24 /*
aoqi@0 25 * @test
aoqi@0 26 * @bug 4917091
aoqi@0 27 * @summary javac rejects array over 128 in length
aoqi@0 28 */
aoqi@0 29
aoqi@0 30
aoqi@0 31 public class Test255 {
aoqi@0 32 public static void main(String... args) {
aoqi@0 33 // allocating an array with 255 dimensions is allowed
aoqi@0 34 Object expected = (Object)new Object
aoqi@0 35 [1/*001*/][1/*002*/][1/*003*/][1/*004*/][1/*005*/]
aoqi@0 36 [1/*006*/][1/*007*/][1/*008*/][1/*009*/][1/*010*/]
aoqi@0 37 [1/*011*/][1/*012*/][1/*013*/][1/*014*/][1/*015*/]
aoqi@0 38 [1/*016*/][1/*017*/][1/*018*/][1/*019*/][1/*020*/]
aoqi@0 39 [1/*021*/][1/*022*/][1/*023*/][1/*024*/][1/*025*/]
aoqi@0 40 [1/*026*/][1/*027*/][1/*028*/][1/*029*/][1/*030*/]
aoqi@0 41 [1/*031*/][1/*032*/][1/*033*/][1/*034*/][1/*035*/]
aoqi@0 42 [1/*036*/][1/*037*/][1/*038*/][1/*039*/][1/*040*/]
aoqi@0 43 [1/*041*/][1/*042*/][1/*043*/][1/*044*/][1/*045*/]
aoqi@0 44 [1/*046*/][1/*047*/][1/*048*/][1/*049*/][1/*050*/]
aoqi@0 45 [1/*051*/][1/*052*/][1/*053*/][1/*054*/][1/*055*/]
aoqi@0 46 [1/*056*/][1/*057*/][1/*058*/][1/*059*/][1/*060*/]
aoqi@0 47 [1/*061*/][1/*062*/][1/*063*/][1/*064*/][1/*065*/]
aoqi@0 48 [1/*066*/][1/*067*/][1/*068*/][1/*069*/][1/*070*/]
aoqi@0 49 [1/*071*/][1/*072*/][1/*073*/][1/*074*/][1/*075*/]
aoqi@0 50 [1/*076*/][1/*077*/][1/*078*/][1/*079*/][1/*080*/]
aoqi@0 51 [1/*081*/][1/*082*/][1/*083*/][1/*084*/][1/*085*/]
aoqi@0 52 [1/*086*/][1/*087*/][1/*088*/][1/*089*/][1/*090*/]
aoqi@0 53 [1/*091*/][1/*092*/][1/*093*/][1/*094*/][1/*095*/]
aoqi@0 54 [1/*096*/][1/*097*/][1/*098*/][1/*099*/][1/*100*/]
aoqi@0 55
aoqi@0 56 [1/*101*/][1/*102*/][1/*103*/][1/*104*/][1/*105*/]
aoqi@0 57 [1/*106*/][1/*107*/][1/*108*/][1/*109*/][1/*110*/]
aoqi@0 58 [1/*111*/][1/*112*/][1/*113*/][1/*114*/][1/*115*/]
aoqi@0 59 [1/*116*/][1/*117*/][1/*118*/][1/*119*/][1/*120*/]
aoqi@0 60 [1/*121*/][1/*122*/][1/*123*/][1/*124*/][1/*125*/]
aoqi@0 61 [1/*126*/][1/*127*/][1/*128*/][1/*129*/][1/*130*/]
aoqi@0 62 [1/*131*/][1/*132*/][1/*133*/][1/*134*/][1/*135*/]
aoqi@0 63 [1/*136*/][1/*137*/][1/*138*/][1/*139*/][1/*140*/]
aoqi@0 64 [1/*141*/][1/*142*/][1/*143*/][1/*144*/][1/*145*/]
aoqi@0 65 [1/*146*/][1/*147*/][1/*148*/][1/*149*/][1/*150*/]
aoqi@0 66 [1/*151*/][1/*152*/][1/*153*/][1/*154*/][1/*155*/]
aoqi@0 67 [1/*156*/][1/*157*/][1/*158*/][1/*159*/][1/*160*/]
aoqi@0 68 [1/*161*/][1/*162*/][1/*163*/][1/*164*/][1/*165*/]
aoqi@0 69 [1/*166*/][1/*167*/][1/*168*/][1/*169*/][1/*170*/]
aoqi@0 70 [1/*171*/][1/*172*/][1/*173*/][1/*174*/][1/*175*/]
aoqi@0 71 [1/*176*/][1/*177*/][1/*178*/][1/*179*/][1/*180*/]
aoqi@0 72 [1/*181*/][1/*182*/][1/*183*/][1/*184*/][1/*185*/]
aoqi@0 73 [1/*186*/][1/*187*/][1/*188*/][1/*189*/][1/*190*/]
aoqi@0 74 [1/*191*/][1/*192*/][1/*193*/][1/*194*/][1/*195*/]
aoqi@0 75 [1/*196*/][1/*197*/][1/*198*/][1/*199*/][1/*200*/]
aoqi@0 76
aoqi@0 77 [1/*201*/][1/*202*/][1/*203*/][1/*204*/][1/*205*/]
aoqi@0 78 [1/*206*/][1/*207*/][1/*208*/][1/*209*/][1/*210*/]
aoqi@0 79 [1/*211*/][1/*212*/][1/*213*/][1/*214*/][1/*215*/]
aoqi@0 80 [1/*216*/][1/*217*/][1/*218*/][1/*219*/][1/*220*/]
aoqi@0 81 [1/*221*/][1/*222*/][1/*223*/][1/*224*/][1/*225*/]
aoqi@0 82 [1/*226*/][1/*227*/][1/*228*/][1/*229*/][1/*230*/]
aoqi@0 83 [1/*231*/][1/*232*/][1/*233*/][1/*234*/][1/*235*/]
aoqi@0 84 [1/*236*/][1/*237*/][1/*238*/][1/*239*/][1/*240*/]
aoqi@0 85 [1/*241*/][1/*242*/][1/*243*/][1/*244*/][1/*245*/]
aoqi@0 86 [1/*246*/][1/*247*/][1/*248*/][1/*249*/][1/*250*/]
aoqi@0 87 [1/*251*/][1/*252*/][1/*253*/][1/*254*/][1/*255*/];
aoqi@0 88 }
aoqi@0 89 }

mercurial