+1 for the proposal, it is wierd to use `.` in some places and not others. <div><br></div><div>On the subject of static methods and properties in general, would it be possible for `.name` to be a reference to a static and `name` a reference to an instance? EG:</div><div><br></div><div>    .name = x // static</div><div>    name = x // instance</div><div>    x = name + .name // instance + static</div><div>    r = name ... .name // instance ... static, needs space</div><div>    r = name...Type.name // Can still qualify with type name<br><br>On Friday, 12 February 2016, Chris Lattner via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; 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"><br><div><blockquote type="cite"><div>On Feb 11, 2016, at 7:17 PM, Rob Mayoff via swift-evolution &lt;<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;swift-evolution@swift.org&#39;);" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Feb 11, 2016 at 9:00 PM, Erica Sadun via swift-evolution <span dir="ltr">&lt;<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;swift-evolution@swift.org&#39;);" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Unlike static members in structures and classes, enumeration cases can be mentioned in initializers and instance methods without referencing a fully qualified type.<br></blockquote></div><br>Why not go the other way then and allow instance methods to refer to static members (or class members) directly, without the type name prefix?</div></div></div></blockquote><br></div><div>As Erica says, this is a worthwhile topic to discuss, but orthogonal from the proposal.  Among other things we’d have to have a way to resolve the conflict that comes up when you have both a static and instance method with the same name (this occurs a few places in ObjC APIs).</div><div><br></div><div>-Chris</div><br></div></blockquote></div><br><br>-- <br>-- Howard.<br>