<div dir="ltr">On Tue, Jan 2, 2018 at 8:07 PM, Jordan Rose via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space"><div>[Proposal: <a href="https://github.com/apple/swift-evolution/blob/master/proposals/0192-non-exhaustive-enums.md" style="font-family:Helvetica,arial,sans-serif" target="_blank">https://github.com/<wbr>apple/swift-evolution/blob/<wbr>master/proposals/0192-non-<wbr>exhaustive-enums.md</a>]</div><div><br></div><div>Whew! Thanks for your feedback, everyone. On the lighter side of feedback—naming things—it seems that most people seem to like &#39;<b>@frozen</b>&#39;, and that does in fact have the connotations we want it to have. I like it too.</div><div><br></div><div>More seriously, this discussion has convinced me that it&#39;s worth including what the proposal discusses as a <b>&#39;future&#39; case</b>. The key point that swayed me is that this can produce a <i>warning</i> when the switch is missing a case rather than an <i>error,</i> which both provides the necessary compiler feedback to update your code and allows your dependencies to continue compiling when you update to a newer SDK. I know people on both sides won&#39;t be 100% satisfied with this, but does it seem like a reasonable compromise?</div><div><br></div><div>The next question is how to spell it. I&#39;m leaning towards `unexpected case:`, which (a) is backwards-compatible, and (b) also handles &quot;private cases&quot;, either the fake kind that you can do in C (as described in the proposal), or some real feature we might add to Swift some day. `unknown case:` isn&#39;t bad either.</div><div><br></div><div>I too would like to just do `unknown:` or `unexpected:` but that&#39;s technically a source-breaking change:</div><div><br></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div>switch foo {</div><div>case bar:</div><div>  unknown:</div><div>  while baz() {</div><div>    while garply() {</div><div>      if quux() {</div><div>        break unknown</div><div>      }</div><div>    }</div><div>  }</div><div>}</div></blockquote><div><br></div><div>Another downside of the `unexpected case:` spelling is that it doesn&#39;t work as part of a larger pattern. I don&#39;t have a good answer for that one, but perhaps it&#39;s acceptable for now.</div><div><br></div><div>I&#39;ll write up a revision of the proposal soon and make sure the core team gets my recommendation when they discuss the results of the review.</div><div><br></div><div>---</div><div><br></div><div><div>I&#39;ll respond to a few of the more intricate discussions tomorrow, including the syntax of putting a new declaration inside the enum rather than outside. Thank you again, everyone, and happy new year!</div></div></div></blockquote><div><br></div><div>I do like this spelling of `@frozen`, and `unknown case` looks perfectly cromulent to me. If this is the path to go down, I&#39;d urge more explicit design as to what happens when `unknown case` and `default` are mixed. I would imagine the most consistent design would be:</div><div><br></div><div>`unknown case` should allow `default` to be omitted if the switch is otherwise exhaustive, obviously.</div><div>`default` should allow `unknown case` to be omitted, just like any other case may then be omitted.</div><div>`unknown case` before `default` should be allowed, just like any other case before `default`; in that case, only known cases not otherwise matched reach the `default`.</div><div>`default` before `unknown case` makes the latter unreachable, just like any other case after `default`.</div><div><br></div><div>The issue here remains that of testability. I wonder if, for such purposes, unknown case should be instantiable when testably imported, with some grammar. In its simplest and yet most exotic form, we could imagine code that testably imports the enum to be allowed to instantiate any made-up case whatsoever (e.g., `@testable import Foo.MyEnum; let x = MyEnum.asdfasdfasdfNonexistent`).</div><div><br></div><div><br></div></div></div></div>