<div dir="ltr">+1 for the fix. Solid and straightforward.</div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Mar 9, 2017 at 9:32 AM, Rod Brown 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><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div>There has been a lot of discussion around this design decision. Personally, I’m with you: this should be allowed. Protocol extensions should be defaults, nothing more.</div><div><br></div><div>The rationale mentioned in Swift Evolution for discouraging this behaviour tends to be that if you conform to the protocol, you should conform and adhere to all its extensions as well, and that not doing so in the same way will be inconsistent.</div><div><br></div><div>I personally think this comes to the Type-first vs Protocol-first approach and I think instances of types should have the final say in the behaviour of the operation. While this would perform slightly worse, and could potentially be unsafe, I think it is consistent with the fact that not all implementers of a protocol behave exactly the same; indeed, if they did, we’d only have one type per protocol, in which case, what is the point of a protocol at all? Just do it with types.</div><div><br></div><div>I love POP and protocol extensions but I’m tempered by the fact that not all types implement protocols in the same ways, and we can’t predict ahead of time where those differences will be needed.</div><div><div class="h5"><div><br></div><br><div><blockquote type="cite"><div>On 10 Mar 2017, at 12:48 am, Adrian Zubarev via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_-8548545238355067376Apple-interchange-newline"><div><div class="m_-8548545238355067376bloop_markdown" style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254)"><p style="margin:15px 0px">My question is why cannot the<span class="m_-8548545238355067376Apple-converted-space"> </span><code style="font-family:Menlo,Consolas,&#39;Liberation Mono&#39;,Courier,monospace;font-size:10pt;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:rgb(248,248,248);color:inherit;border:1px solid rgb(234,234,234);margin:0px 2px;padding:0px 5px;word-break:normal;word-wrap:normal">Base</code><span class="m_-8548545238355067376Apple-converted-space"> </span>type override the default implementation? I might want to override it, by calling the default implementation and modifying the result for my needs.</p><p style="margin:15px 0px">Something like that:</p><pre style="margin:15px 0px;font-family:Menlo,Consolas,&#39;Liberation Mono&#39;,Courier,monospace;font-size:10pt;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:rgb(248,248,248);color:inherit;border:1px solid rgb(204,204,204);overflow:auto;padding:4px 8px;word-break:normal;word-wrap:normal"><code class="m_-8548545238355067376swift" style="font-family:Menlo,Consolas,&#39;Liberation Mono&#39;,Courier,monospace;font-size:10pt;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:rgb(248,248,248);color:inherit;border:0px;margin:0px;padding:0px;word-break:normal;word-wrap:normal">protocol P {
    func foo() -&gt; Int
}

extension P {
    func foo() -&gt; Int {
        return 42
    }
}

class Base : P {
    override func foo() -&gt; {
         
        return default.foo() * 100
    }
}
</code></pre><p style="margin:15px 0px">The example is kept simple.</p><div style="margin:15px 0px"><br class="m_-8548545238355067376webkit-block-placeholder"></div></div><div class="m_-8548545238355067376bloop_original_html" style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254)"><div id="m_-8548545238355067376bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px;margin:0px"><br></div><br><div id="m_-8548545238355067376bloop_sign_1489067113181481984" class="m_-8548545238355067376bloop_sign"><div style="font-family:helvetica,arial;font-size:13px">-- <br>Adrian Zubarev<br>Sent with Airmail</div></div><br><p class="m_-8548545238355067376airmail_on" style="margin:15px 0px">Am 9. März 2017 um 14:37:08, Matthew Johnson via swift-evolution (<a href="mailto:swift-evolution@swift.org" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">swift-evolution@swift.org</a>) schrieb:</p><blockquote type="cite" class="m_-8548545238355067376clean_bq" style="margin:15px 0px"><span style="margin-top:0px;margin-bottom:0px"><div dir="auto"><div></div><div><div><br><br>Sent from my iPad</div><div><br>On Mar 9, 2017, at 2:23 AM, Slava Pestov via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite" style="margin:15px 0px"><div style="margin-top:0px;margin-bottom:0px">I think the fact that the type checker permits ‘final’ to appear inside protocol extensions is an oversight and this probably does not even warrant a proposal. I don’t think allowing this was ever part of the conceptual model of protocol extensions at any point in time (if you recall they were introduced ‘recently’, in Swift 2). If someone put together a PR which makes ‘final’ in protocol extensions an error in Swift 4 mode (and a warning in 3), I would merge it.<div><br></div><div>FWIW that there is one restriction around the direct dispatch here we want to lift, but it’s not related to this proposal.</div><div><br></div><div>If you have a base class conforming to a protocol using default requirements, eg</div><div><br></div><div>  protocol Proto { func f() }</div><div>  extension Proto { func f() { } }</div><div><br></div><div>  class Base : Proto {}</div><div><br></div><div>Currently the witness table for Base : Proto directly references the extension method Proto.f.</div><div><br></div><div>We want to allow this, at least inside the module:</div><div><br></div><div>class Derived {</div><div>  override func f() {} // does not work currently</div><div>}</div><div><br></div><div>This will mean that ‘Proto.f’ will appear in the vtable of ‘Base’, pointing at the extension method. The conformance will dispatch through the vtable instead of directly calling the extension method.</div></div></blockquote><div><br></div><div>Would this allow the override to call `Proto.f` through super?</div><br><blockquote type="cite" style="margin:15px 0px"><div style="margin-top:0px;margin-bottom:0px"><div><div><br></div><div>Slava<div><br><div><blockquote type="cite" style="margin:15px 0px"><div style="margin-top:0px">On Mar 7, 2017, at 7:23 PM, Brian King via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_-8548545238355067376Apple-interchange-newline"><div style="margin-bottom:0px"><div dir="ltr"><div style="font-size:12.8px">Hey Folks, <span style="font-size:12.8px">This draft proposal addresses</span><span class="m_-8548545238355067376Apple-converted-space"> </span><span style="font-size:12.8px">starter bug SR-1762.</span><span style="font-size:12.8px"> I believe this is in scope for Swift 4 since it impacts source compatibility</span><span style="font-size:12.8px">. It&#39;s not a very exciting proposal, but I think it will help make Swift a little more consistent.</span></div><div style="font-size:12.8px"><span style="font-size:12.8px"><br></span></div><div style="font-size:12.8px"><span style="font-size:12.8px"><a href="https://gist.github.com/KingOfBrian/6f20c566114ac0ef54c8092d80e54ee7" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">https://gist.github.com/<wbr>KingOfBrian/<wbr>6f20c566114ac0ef54c8092d80e54e<wbr>e7</a></span><br></div><div style="font-size:12.8px"><a href="https://bugs.swift.org/browse/SR-1762" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">https://bugs.swift.org/browse/<wbr>SR-1762</a></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Thanks</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Brian</div><div style="font-size:12.8px"><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em">Introduction</h2><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"></h2><p style="margin:0px 0px 16px;font-size:16px;font-weight:normal;box-sizing:border-box">This proposal suggests removing support for the <code style="font-family:sfmono-regular,consolas,&#39;liberation mono&#39;,menlo,courier,monospace;font-size:13.6px;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:rgba(27,31,35,0.0470588);color:inherit;border:1px solid rgb(234,234,234);margin:0px;padding:0.2em 0px;word-break:normal;word-wrap:normal;box-sizing:border-box">final</code> keyword when declaring a function in a protocol extension. The presence of the <code style="font-family:sfmono-regular,consolas,&#39;liberation mono&#39;,menlo,courier,monospace;font-size:13.6px;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:rgba(27,31,35,0.0470588);color:inherit;border:1px solid rgb(234,234,234);margin:0px;padding:0.2em 0px;word-break:normal;word-wrap:normal;box-sizing:border-box">final</code> keyword does not currently generate an error message, and it does not actually modify the dispatch behavior in any way.</p><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"><a id="m_-8548545238355067376gmail-user-content-motivation" class="m_-8548545238355067376gmail-anchor" href="https://gist.github.com/KingOfBrian/6f20c566114ac0ef54c8092d80e54ee7#motivation" style="color:rgb(3,102,214);background-color:transparent;text-decoration:none;box-sizing:border-box;float:left;padding-right:4px;line-height:1" target="_blank"></a>Motivation</h2><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"></h2><p style="margin:0px 0px 16px;font-size:16px;font-weight:normal;box-sizing:border-box">In the original protocol model of Swift, a developer could use the <code style="font-family:sfmono-regular,consolas,&#39;liberation mono&#39;,menlo,courier,monospace;font-size:13.6px;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:rgba(27,31,35,0.0470588);color:inherit;border:1px solid rgb(234,234,234);margin:0px;padding:0.2em 0px;word-break:normal;word-wrap:normal;box-sizing:border-box">final</code> keyword when declaring a function in a protocol extension to ensure the function could not be overridden. This keyword has no use in Swift&#39;s current protocol model, since functions in protocol extensions can not be overridden and will always use direct dispatch.</p><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"><a id="m_-8548545238355067376gmail-user-content-detailed-design" class="m_-8548545238355067376gmail-anchor" href="https://gist.github.com/KingOfBrian/6f20c566114ac0ef54c8092d80e54ee7#detailed-design" style="color:rgb(3,102,214);background-color:transparent;text-decoration:none;box-sizing:border-box;float:left;padding-right:4px;line-height:1" target="_blank"></a>Detailed design</h2><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"></h2><p style="margin:0px 0px 16px;font-size:16px;font-weight:normal;box-sizing:border-box">The compiler should generate an error or warning when the <code style="font-family:sfmono-regular,consolas,&#39;liberation mono&#39;,menlo,courier,monospace;font-size:13.6px;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:rgba(27,31,35,0.0470588);color:inherit;border:1px solid rgb(234,234,234);margin:0px;padding:0.2em 0px;word-break:normal;word-wrap:normal;box-sizing:border-box">final</code> keyword is used on a function declaration inside of a protocol extension. This is consistent with the use of <code style="font-family:sfmono-regular,consolas,&#39;liberation mono&#39;,menlo,courier,monospace;font-size:13.6px;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;background-color:rgba(27,31,35,0.0470588);color:inherit;border:1px solid rgb(234,234,234);margin:0px;padding:0.2em 0px;word-break:normal;word-wrap:normal;box-sizing:border-box">final</code> in structs and enumerations.</p><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"><a id="m_-8548545238355067376gmail-user-content-source-compatibility" class="m_-8548545238355067376gmail-anchor" href="https://gist.github.com/KingOfBrian/6f20c566114ac0ef54c8092d80e54ee7#source-compatibility" style="color:rgb(3,102,214);background-color:transparent;text-decoration:none;box-sizing:border-box;float:left;padding-right:4px;line-height:1" target="_blank"></a>Source compatibility</h2><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"></h2><p style="margin:0px 0px 16px;font-size:16px;font-weight:normal;box-sizing:border-box">This change will impact source compatibility. To maintain compatibility with Swift 3, a warning will be generated in Swift 3 mode instead of an error message.</p><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"><a id="m_-8548545238355067376gmail-user-content-effect-on-abi-stability" class="m_-8548545238355067376gmail-anchor" href="https://gist.github.com/KingOfBrian/6f20c566114ac0ef54c8092d80e54ee7#effect-on-abi-stability" style="color:rgb(3,102,214);background-color:transparent;text-decoration:none;box-sizing:border-box;float:left;padding-right:4px;line-height:1" target="_blank"></a>Effect on ABI stability</h2><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"></h2><p style="margin:0px 0px 16px;font-size:16px;font-weight:normal;box-sizing:border-box">This has no effect on ABI stability</p><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"><a id="m_-8548545238355067376gmail-user-content-effect-on-api-resilience" class="m_-8548545238355067376gmail-anchor" href="https://gist.github.com/KingOfBrian/6f20c566114ac0ef54c8092d80e54ee7#effect-on-api-resilience" style="color:rgb(3,102,214);background-color:transparent;text-decoration:none;box-sizing:border-box;float:left;padding-right:4px;line-height:1" target="_blank"></a>Effect on API resilience</h2><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"></h2><p style="margin:0px 0px 16px;font-size:16px;font-weight:normal;box-sizing:border-box">This has no effect on API resilience</p><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em"><a id="m_-8548545238355067376gmail-user-content-alternatives-considered" class="m_-8548545238355067376gmail-anchor" href="https://gist.github.com/KingOfBrian/6f20c566114ac0ef54c8092d80e54ee7#alternatives-considered" style="color:rgb(3,102,214);background-color:transparent;text-decoration:none;box-sizing:border-box;float:left;padding-right:4px;line-height:1" target="_blank"></a>Alternatives considered</h2><div style="font-size:16px;font-weight:normal;box-sizing:border-box;margin-top:0px;margin-bottom:0px"><h2 style="font-weight:bold;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(234,236,239);font-size:24px;font-family:-apple-system,blinkmacsystemfont,&#39;segoe ui&#39;,helvetica,arial,sans-serif,&#39;apple color emoji&#39;,&#39;segoe ui emoji&#39;,&#39;segoe ui symbol&#39;;box-sizing:border-box;margin-top:24px;margin-bottom:16px;line-height:1.25;padding-bottom:0.3em">The only alternative would be to not fix this bug</h2></div></div></div>______________________________<wbr>_________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br></div></blockquote></div><br></div></div></div></div></blockquote><blockquote type="cite" style="margin:15px 0px"><div style="margin-top:0px;margin-bottom:0px"><span>______________________________<wbr>_________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" style="color:rgb(65,131,196);background-color:inherit;text-decoration:none" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a></span><br></div></blockquote>______________________________<wbr>_________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br></div></div></span></blockquote></div><div class="m_-8548545238355067376bloop_markdown" style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254)"><div style="margin:15px 0px"><br class="m_-8548545238355067376webkit-block-placeholder"></div></div><span style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254);float:none;display:inline!important">______________________________<wbr>_________________</span><br style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254)"><span style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254);float:none;display:inline!important">swift-evolution mailing list</span><br style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254)"><a href="mailto:swift-evolution@swift.org" style="color:rgb(65,131,196);background-color:rgb(254,254,254);text-decoration:none;font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">swift-evolution@swift.org</a><br style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254)"><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" style="color:rgb(65,131,196);background-color:rgb(254,254,254);text-decoration:none;font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br style="font-family:Helvetica,Arial;font-size:13px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(254,254,254)"></div></blockquote></div><br></div></div></div><br>______________________________<wbr>_________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br></blockquote></div><br></div>