Skip to content

Commit a8046c9

Browse files
committedMay 5, 2021
8266436: Synthetic constructor trees have non-null return type
Reviewed-by: vromero
1 parent c9873c4 commit a8046c9

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/tree/TreeMaker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ public JCMethodDecl MethodDef(MethodSymbol m, Type mtype, JCBlock body) {
996996
new JCMethodDecl(
997997
Modifiers(m.flags(), Annotations(m.getRawAttributes())),
998998
m.name,
999-
Type(mtype.getReturnType()),
999+
m.name != names.init ? Type(mtype.getReturnType()) : null,
10001000
TypeParams(mtype.getTypeArguments()),
10011001
null, // receiver type
10021002
Params(mtype.getParameterTypes(), m),

‎test/langtools/tools/javac/parser/JavacParserTest.java

+19-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 7073631 7159445 7156633 8028235 8065753 8205418 8205913 8228451 8237041 8253584 8246774 8256411 8256149 8259050
26+
* @bug 7073631 7159445 7156633 8028235 8065753 8205418 8205913 8228451 8237041 8253584 8246774 8256411 8256149 8259050 8266436
2727
* @summary tests error and diagnostics positions
2828
* @author Jan Lahoda
2929
* @modules jdk.compiler/com.sun.tools.javac.api
@@ -1758,6 +1758,23 @@ class Test {
17581758
codes);
17591759
}
17601760

1761+
@Test //JDK-8266436
1762+
void testSyntheticConstructorReturnType() throws IOException {
1763+
String code = """
1764+
package test;
1765+
public class Test {
1766+
}
1767+
""";
1768+
1769+
JavacTaskImpl ct = (JavacTaskImpl) tool.getTask(null, fm, null,
1770+
null, null, Arrays.asList(new MyFileObject(code)));
1771+
CompilationUnitTree cut = ct.parse().iterator().next();
1772+
ct.analyze();
1773+
ClassTree clazz = (ClassTree) cut.getTypeDecls().get(0);
1774+
MethodTree constr = (MethodTree) clazz.getMembers().get(0);
1775+
assertEquals("expected null as constructor return type", constr.getReturnType(), null);
1776+
}
1777+
17611778
void run(String[] args) throws Exception {
17621779
int passed = 0, failed = 0;
17631780
final Pattern p = (args != null && args.length > 0)
@@ -1816,10 +1833,7 @@ void assertEquals(String message, int i, long l) {
18161833
}
18171834

18181835
void assertEquals(String message, Object o1, Object o2) {
1819-
if (o1 != null && o2 != null && !o1.equals(o2)) {
1820-
fail(message);
1821-
}
1822-
if (o1 == null && o2 != null) {
1836+
if (!Objects.equals(o1, o2)) {
18231837
fail(message);
18241838
}
18251839
}

0 commit comments

Comments
 (0)
Please sign in to comment.