<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Presently, you can mark enum cases as <font face="Menlo" class="">@available</font> but it has no impact. Take the following example:<div class=""><br class=""></div><div class=""><font face="Menlo" class="">enum Things:String {</font></div><div class=""><font face="Menlo" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>@available (iOS 9.3, *) case MobileThing = "com.example.mobilething"</font></div><div class=""><font face="Menlo" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>@available (OSX 10.11, *) case DesktopThing = "com.example.desktopthing"</font></div><div class=""><font face="Menlo" class="">}</font></div><div class=""><font face="Menlo" class=""><br class=""></font></div><div class="">Despite the above compiling, the following code will run iOS with no warnings:</div><div class=""><br class=""></div><div class=""><font face="Menlo" class="">func takesA(thing:Things) {</font></div><div class=""><font face="Menlo" class=""><span class="Apple-tab-span" style="white-space:pre">        </span>print(thing)</font></div><div class=""><font face="Menlo" class="">}</font></div><div class=""><font face="Menlo" class=""><br class=""></font></div><div class=""><font face="Menlo" class="">takesA(.DesktopThing)</font></div><div class=""><br class=""></div><div class=""><font face="Menlo" class=""><br class=""></font></div><div class="">Are there enough compelling use-cases for @available on enum cases to be considered? At the very least, if <font face="Menlo" class="">@available</font> doesn't do anything on cases, it shouldn't be permitted.</div></body></html>