7040883: Compilation error: "length in Array is defined in an inaccessible class or interface"

Fix of 7034511 (now backed out) is causing spurious accessibility errors

Reviewed-by: jjg
This commit is contained in:
Maurizio Cimadamore 2011-05-02 12:05:41 +01:00
parent 746cdfda77
commit fbecf91f80
4 changed files with 43 additions and 3 deletions

View file

@ -2314,7 +2314,7 @@ public class Types {
if (elemtype == t.elemtype)
return t;
else
return new ArrayType(elemtype, t.tsym);
return new ArrayType(upperBound(elemtype), t.tsym);
}
@Override

View file

@ -1,6 +1,7 @@
/*
* @test /nodynamiccopyright/
* @bug 7034511
* @ignore backing out 7034511, see 7040883
* @bug 7034511 7040883
* @summary Loophole in typesafety
* @compile/fail/ref=T7034511a.out -XDrawDiagnostics T7034511a.java
*/

View file

@ -1,6 +1,7 @@
/*
* @test /nodynamiccopyright/
* @bug 7034511
* @ignore backing out 7034511, see 7040883
* @bug 7034511 7040883
* @summary Loophole in typesafety
* @compile/fail/ref=T7034511b.out -XDrawDiagnostics T7034511b.java
*/

View file

@ -0,0 +1,38 @@
/*
* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 7040883 7034511
* @summary Compilation error: "length in Array is defined in an inaccessible class or interface"
* @compile T7040883.java
*/
public class T7040883 {
<Z> Z[] getListeners(Class<Z> z) { return null; }
void test(String s) {
int i = getListeners(s.getClass()).length;
}
}