mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
8023768: Use the unannotatedType in cyclicity checks
Reviewed-by: jjg
This commit is contained in:
parent
041cadb78d
commit
d99f710f70
2 changed files with 46 additions and 2 deletions
|
@ -2216,11 +2216,11 @@ public class Check {
|
||||||
if (t.hasTag(TYPEVAR) && (t.tsym.flags() & UNATTRIBUTED) != 0)
|
if (t.hasTag(TYPEVAR) && (t.tsym.flags() & UNATTRIBUTED) != 0)
|
||||||
return;
|
return;
|
||||||
if (seen.contains(t)) {
|
if (seen.contains(t)) {
|
||||||
tv = (TypeVar)t;
|
tv = (TypeVar)t.unannotatedType();
|
||||||
tv.bound = types.createErrorType(t);
|
tv.bound = types.createErrorType(t);
|
||||||
log.error(pos, "cyclic.inheritance", t);
|
log.error(pos, "cyclic.inheritance", t);
|
||||||
} else if (t.hasTag(TYPEVAR)) {
|
} else if (t.hasTag(TYPEVAR)) {
|
||||||
tv = (TypeVar)t;
|
tv = (TypeVar)t.unannotatedType();
|
||||||
seen = seen.prepend(tv);
|
seen = seen.prepend(tv);
|
||||||
for (Type b : types.getBounds(tv))
|
for (Type b : types.getBounds(tv))
|
||||||
checkNonCyclic1(pos, b, seen);
|
checkNonCyclic1(pos, b, seen);
|
||||||
|
|
|
@ -0,0 +1,44 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013, 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 8023768
|
||||||
|
* @summary Type annotations on a type variable, where the bound of
|
||||||
|
* the type variable is an annotated type variable,
|
||||||
|
* need to be processed correctly.
|
||||||
|
* @author Werner Dietl
|
||||||
|
* @compile TypeVariableCycleTest.java
|
||||||
|
*/
|
||||||
|
|
||||||
|
import java.lang.annotation.*;
|
||||||
|
|
||||||
|
class TypeVariableCycleTest<CTV> {
|
||||||
|
<MTV extends @TA CTV> MTV cast(CTV p) {
|
||||||
|
return (@TA MTV) p;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
|
||||||
|
@interface TA {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue