<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Aptos;
        panose-1:2 11 0 4 2 2 2 2 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        font-size:11.0pt;
        font-family:"Aptos",sans-serif;
        mso-ligatures:standardcontextual;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Aptos",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:11.0pt;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style>
</head>
<body lang="EN-US" link="#467886" vlink="#96607D" style="word-wrap:break-word">
<div class="WordSection1">
<p class="MsoNormal">Hi team,<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">For some reason, compiler rejects “return” in lambda if it’s declared in the early construction context. But a similar lambda without “return” is accepted. Is this by design?<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">interface Foo { int get(); }<o:p></o:p></p>
<p class="MsoNormal"><br>
class Test {<br>
    Test() {<br>
        Foo lmb = () -> 1; //is okay<br>
        Foo lmb2 = () -> {<br>
            return 1; //fails with a compilation error<br>
        };<br>
        super();<br>
        Foo lmb3 = () -> {<br>
            return 1; //is okay<br>
        };<br>
    }<br>
}<br>
<br>
public void main() {<br>
    new Test();<br>
}<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Main.java:13: error: 'return' not allowed before explicit constructor invocation<o:p></o:p></p>
<p class="MsoNormal">            return 1;<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">java --version<o:p></o:p></p>
<p class="MsoNormal">openjdk 24-ea 2025-03-18<o:p></o:p></p>
<p class="MsoNormal">OpenJDK Runtime Environment (build 24-ea+24-2960)<o:p></o:p></p>
<p class="MsoNormal">OpenJDK 64-Bit Server VM (build 24-ea+24-2960, mixed mode, sharing)<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thank you,<o:p></o:p></p>
<p class="MsoNormal">Ella<o:p></o:p></p>
</div>
</body>
</html>