<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div><blockquote type="cite" class=""><div class="">On Dec 17, 2015, at 4:54 AM, Jeremy Pereira via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><div class=""><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">There are other ways to achieve the goal, for example Java has a warning that explicitly tells you when your local variable is shadowing an instance variable. Why wouldn’t that work?</span></div></blockquote><br class=""></div><div>The main arguments I've seen are around initializers and let-unwrapping:</div><div><br class=""></div><div>&nbsp; &nbsp; init(foo: Int) {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; self.foo = foo</div><div>&nbsp; &nbsp; }</div><div><br class=""></div><div>&nbsp; &nbsp; guard let foo = foo else { return }</div><div><br class=""></div><div>I'm curious if there are more. I think both of these could be special-cased.</div><div><br class=""></div><div>Stephen</div></body></html>