|
23 | 23 |
|
24 | 24 | /*
|
25 | 25 | * @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 |
27 | 27 | * @summary tests error and diagnostics positions
|
28 | 28 | * @author Jan Lahoda
|
29 | 29 | * @modules jdk.compiler/com.sun.tools.javac.api
|
@@ -1758,6 +1758,23 @@ class Test {
|
1758 | 1758 | codes);
|
1759 | 1759 | }
|
1760 | 1760 |
|
| 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 | + |
1761 | 1778 | void run(String[] args) throws Exception {
|
1762 | 1779 | int passed = 0, failed = 0;
|
1763 | 1780 | final Pattern p = (args != null && args.length > 0)
|
@@ -1816,10 +1833,7 @@ void assertEquals(String message, int i, long l) {
|
1816 | 1833 | }
|
1817 | 1834 |
|
1818 | 1835 | 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)) { |
1823 | 1837 | fail(message);
|
1824 | 1838 | }
|
1825 | 1839 | }
|
|
0 commit comments