author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 27850 | langtools/test/tools/javac/T8020997/CannotCompileRepeatedAnnoTest.java@d27ca106daa4 |
child 52864 | e78890a4c25f |
permissions | -rw-r--r-- |
19251
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
1 |
/* |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
2 |
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
4 |
* |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
8 |
* |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
13 |
* accompanied this code). |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
14 |
* |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
18 |
* |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
21 |
* questions. |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
22 |
*/ |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
23 |
|
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
24 |
/* |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
25 |
* @test |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
26 |
* @bug 8020997 |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
27 |
* @summary Cannot compile class with repeating annotation |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
28 |
* @compile CannotCompileRepeatedAnnoTest.java |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
29 |
*/ |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
30 |
|
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
31 |
import java.lang.annotation.*; |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
32 |
|
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
33 |
@Anno(req = true) |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
34 |
@Anno() |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
35 |
public class CannotCompileRepeatedAnnoTest { |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
36 |
} |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
37 |
|
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
38 |
@Repeatable(Container.class) |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
39 |
@interface Anno { |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
40 |
boolean req() default false; |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
41 |
} |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
42 |
|
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
43 |
@interface Container{ |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
44 |
Anno[] value(); |
c3b7abd43bc0
8020997: TreeMaker.AnnotationBuilder creates broken element literals with repeating annotations
vromero
parents:
diff
changeset
|
45 |
} |