<div dir="ltr"><div>Hello amber-dev experts!<br><br></div><div>I am modernizing our codebase by making it use enhanced / exhaustive switches.<br><br></div><div>In several places, I replaced `default: ` by `case THE_ONLY_UNUSED_ENUM_VALUE:`, except that I am hitting an unexpected difference in behaviour, at least from my point of view. <br><br></div><div>I have reduced the code to the following reproducer (tested on the <a href="https://dev.java/playground/">https://dev.java/playground/</a>), where `main1()` compiles, but `main2()` does not. And yet, I am under the impression both should be equivalent?<br clear="all"></div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><table style="border-collapse:collapse;padding:0px;margin:0px"><tbody><tr><td style="width:113px"><br>What do you think?<br>Thanks a lot.<br><br><br><br>import java.io.IOException;<br><br>class Main {<br>    public enum Action { IGNORE, REJECT }<br><br>    public static void main(String[] args) {<br>        main1();<br>        main2();<br>    }<br><br>    private static void main1() {<br>        String s;<br>        try {<br>            s = getValue();<br>        } catch (IOException e) {<br>            switch (getAction()) {<br>                case IGNORE:<br>                    return;<br>                default:<br>                    throw new RuntimeException("REJECTED");<br>            }<br>        }<br><br>        System.out.println(s);<br>    }<br><br>    private static void main2() {<br>        String s;<br>        try {<br>            s = getValue();<br>        } catch (IOException e) {<br>            switch (getAction()) {<br>                case IGNORE:<br>                    return;<br>                case REJECT: // <------------------- Fails compilation<br>                    throw new RuntimeException("REJECTED");<br>            }<br>        }<br><br>        System.out.println(s); // <------- Main.java:40: error: variable s might not have been initialized<br>    }<br><br>    static Action getAction() {<br>        return Action.IGNORE;<br>    }<br><br>    static String getValue() throws IOException {<br>        return "SUCCESS";<br>    }<br>}<br></td><td><br></td></tr><tr><td colspan="2"><br></td></tr></tbody></table></div></div>

<br>
<i style="margin:0px;padding:0px;border:0px;outline:0px;vertical-align:baseline;background:rgb(255,255,255);font-family:proxima-nova-zendesk,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",Arial,sans-serif;color:rgb(85,85,85)"><span style="margin:0px;padding:0px;border:0px;outline:0px;vertical-align:baseline;background:transparent;font-family:proxima-nova-zendesk,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",Arial,sans-serif;font-weight:600"><font size="2">CONFIDENTIALITY NOTICE: This email may contain confidential and privileged material for the sole use of the intended recipient(s). Any review, use, distribution or disclosure by others is strictly prohibited.  If you have received this communication in error, please notify the sender immediately by e-mail and delete the message and any file attachments from your computer. Thank you.</font></span></i>