Skip to content

Commit aab706c

Browse files
committedSep 3, 2020
8160601: unexpected error compiling @deprecated package
Reviewed-by: jlaskey
1 parent 869b051 commit aab706c

File tree

2 files changed

+84
-1
lines changed

2 files changed

+84
-1
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3489,7 +3489,7 @@ public JCTree.JCCompilationUnit parseCompilationUnit() {
34893489
List<JCAnnotation> annotations = List.nil();
34903490
seenPackage = true;
34913491
if (mods != null) {
3492-
checkNoMods(mods.flags);
3492+
checkNoMods(mods.flags & ~Flags.DEPRECATED);
34933493
annotations = mods.annotations;
34943494
mods = null;
34953495
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/*
2+
* Copyright (c) 2020, 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 8160601
27+
* @summary Verify deprecated javadoc tag in package-info does not crash javac.
28+
* @library /tools/lib
29+
* @modules
30+
* jdk.compiler/com.sun.tools.javac.api
31+
* jdk.compiler/com.sun.tools.javac.main
32+
* @build toolbox.ToolBox toolbox.JavacTask
33+
* @run main JavadocDeprecatedInPackageTest
34+
*/
35+
36+
import toolbox.JavacTask;
37+
import toolbox.Task;
38+
import toolbox.TestRunner;
39+
import toolbox.ToolBox;
40+
41+
import java.nio.file.Path;
42+
import java.nio.file.Paths;
43+
import java.util.List;
44+
import java.util.Objects;
45+
46+
public class JavadocDeprecatedInPackageTest extends TestRunner {
47+
48+
protected ToolBox tb;
49+
50+
JavadocDeprecatedInPackageTest() {
51+
super(System.err);
52+
tb = new ToolBox();
53+
}
54+
55+
public static void main(String... args) throws Exception {
56+
JavadocDeprecatedInPackageTest t = new JavadocDeprecatedInPackageTest();
57+
t.runTests(m -> new Object[] { Paths.get(m.getName()) });
58+
}
59+
60+
@Test
61+
public void javadocDeprecatedTag(Path base) throws Exception {
62+
Path src = base.resolve("src");
63+
tb.writeJavaFiles(src,
64+
"/** @deprecated message */ @Deprecated package p1;",
65+
"/** @deprecated message */ package p2;");
66+
67+
List<String> actual =
68+
new JavacTask(tb, Task.Mode.CMDLINE)
69+
.options("-Xlint:deprecation",
70+
"-XDrawDiagnostics")
71+
.files(tb.findJavaFiles(src))
72+
.run(Task.Expect.SUCCESS)
73+
.writeAll()
74+
.getOutputLines(Task.OutputKind.DIRECT);
75+
76+
List<String> expected = List.of("package-info.java:1:48: compiler.warn.deprecated.annotation.has.no.effect: kindname.package",
77+
"1 warning");
78+
79+
if (!Objects.equals(actual, expected)) {
80+
throw new AssertionError("Unexpected log output: " + actual);
81+
}
82+
}
83+
}

0 commit comments

Comments
 (0)
Please sign in to comment.