|
| 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