Skip to content

Commit 2b02b6f

Browse files
committedNov 3, 2021
8274942: AssertionError at jdk.compiler/com.sun.tools.javac.util.Assert.error(Assert.java:155)
Reviewed-by: vromero
1 parent bb92fb0 commit 2b02b6f

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Annotate.java

+6
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,12 @@ private Attribute getAnnotationPrimitiveValue(Type expectedElementType, JCExpres
672672
log.error(tree.pos(), Errors.AttributeValueMustBeConstant);
673673
return new Attribute.Error(expectedElementType);
674674
}
675+
676+
// Scan the annotation element value and then attribute nested annotations if present
677+
if (tree.type != null && tree.type.tsym != null) {
678+
queueScanTreeAndTypeAnnotate(tree, env, tree.type.tsym, tree.pos());
679+
}
680+
675681
result = cfolder.coerce(result, expectedElementType);
676682
return new Attribute.Constant(expectedElementType, result.constValue());
677683
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8274942
27+
* @summary javac should attribute the internal annotations of the annotation element value
28+
* @compile NestTypeAnnotation.java
29+
*/
30+
31+
import java.lang.annotation.*;
32+
33+
public class NestTypeAnnotation {
34+
@Retention(RetentionPolicy.RUNTIME)
35+
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
36+
public @interface OuterAnnotation {
37+
int intVal();
38+
float floatVal();
39+
}
40+
41+
@Retention(RetentionPolicy.RUNTIME)
42+
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
43+
public @interface InnerAnnotation { }
44+
45+
public static void main(String[] args) {
46+
int intVal1 = (@OuterAnnotation(intVal = (@InnerAnnotation() int) 2.5, floatVal = (@InnerAnnotation() float) 2.5) int) 2.4;
47+
int[] arr = new int []{1, 2}; // use `2.4 * arr[0] + arr[1]` to prevent optimization.
48+
int intVal2 = (@OuterAnnotation(intVal = (@InnerAnnotation() int) 2.5, floatVal = (@InnerAnnotation() float) 2.5) int) (2.4 * arr[0] + arr[1]);
49+
50+
int[] singleArr1 = new @OuterAnnotation(intVal = (@InnerAnnotation() int) 2.5, floatVal = (@InnerAnnotation() float) 2.5) int [2];
51+
@OuterAnnotation(intVal = (@InnerAnnotation() int) 2.5, floatVal = (@InnerAnnotation() float) 2.5) int[] singleArr2 = new int [2];
52+
int[] singleArr3 = new int @OuterAnnotation(intVal = (@InnerAnnotation() int) 2.5, floatVal = (@InnerAnnotation() float) 2.5) [2];
53+
54+
int[][] multiArr1 = new int @OuterAnnotation(intVal = (@InnerAnnotation() int) 2.5, floatVal = (@InnerAnnotation() float) 2.5) [2][3];
55+
int[][] multiArr2 = new int [2] @OuterAnnotation(intVal = (@InnerAnnotation() int) 2.5, floatVal = (@InnerAnnotation() float) 2.5) [3];
56+
}
57+
}

0 commit comments

Comments
 (0)
Please sign in to comment.