<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=""><br class=""><div><blockquote type="cite" class=""><div class="">On Sep 25, 2017, at 10:01 AM, Nevin Brackett-Rozinsky &lt;<a href="mailto:nevin.brackettrozinsky@gmail.com" class="">nevin.brackettrozinsky@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class=""><font face="monospace, monospace" class="">func triple(_ x: Int) -&gt; Int {</font></div><div class=""><font face="monospace, monospace" class="">&nbsp; &nbsp; return 3 * x</font></div><div class=""><font face="monospace, monospace" class="">}</font></div><div class=""><font face="monospace, monospace" class=""><br class=""></font></div><div class=""><font face="monospace, monospace" class="">extension Int {</font></div><div class=""><font face="monospace, monospace" class="">&nbsp; &nbsp; func triple() -&gt; Int {</font></div><div class=""><font face="monospace, monospace" class="">&nbsp; &nbsp; &nbsp; &nbsp; return triple(self)&nbsp; &nbsp; &nbsp;// Error here</font></div><div class=""><font face="monospace, monospace" class="">&nbsp; &nbsp; }</font></div><div class=""><font face="monospace, monospace" class="">}</font></div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">The error reads:</div><div class=""><br class=""></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><font face="monospace, monospace" class="">Playground execution failed:<br class="">error: Test.playground:5:16: error: use of 'triple' refers to instance method 'triple()' rather than global function 'triple' in module '__lldb_expr_52'<br class="">&nbsp; &nbsp; &nbsp; &nbsp; return triple(self)&nbsp; &nbsp; &nbsp;// Error here<br class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;^<br class="">Test.playground:5:16: note: use '__lldb_expr_52.' to reference the global function in module '__lldb_expr_52'<br class="">&nbsp; &nbsp; &nbsp; &nbsp; return triple(self)&nbsp; &nbsp; &nbsp;// Error here<br class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;^<br class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;__lldb_expr_52.</font></blockquote><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Notice where the error says, “use of 'triple' refers to instance method 'triple()' rather than global function 'triple'”.</div><div class=""><br class=""></div><div class="">Notice further that the instance method takes 0 arguments. In particular, “self.triple()” is a valid way to call it, and “self.triple(self)” is not.</div><div class=""><br class=""></div><div class="">It is true that the instance method could be called as a type method with 1 argument, “Int.triple(self)”. However, “triple(self)” is not a valid way to call the type method, which we can demonstrate by removing the global function entirely:</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><div class=""><font face="monospace, monospace" class="">extension Int {</font></div><div class=""><font face="monospace, monospace" class="">&nbsp; &nbsp; func triple() -&gt; Int {</font></div><div class=""><font face="monospace, monospace" class="">&nbsp; &nbsp; &nbsp; &nbsp; return triple(self)&nbsp; &nbsp; &nbsp;// Error here</font></div><div class=""><font face="monospace, monospace" class="">&nbsp; &nbsp; }</font></div><div class=""><font face="monospace, monospace" class="">}</font></div></div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">This time the error reads:</div><div class=""><br class=""></div><div class=""><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><font face="monospace, monospace" class="">Playground execution failed:<br class="">error: Test.playground:3:23: error: argument passed to call that takes no arguments<br class="">&nbsp; &nbsp; &nbsp; &nbsp; return triple(self)<br class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;~^~~~~</font></blockquote><div class=""><br class=""></div><div class=""><br class=""></div></div><div class="">So the compiler correctly recognizes that “triple(self)” is not a valid call to the instance method. Indeed, it has the wrong arity. From there, it seems to me a small step to reason that, in the case where a function with the proper signature *does* exist, that it should be called.</div><div class=""><br class=""></div><div class="">&nbsp;• • •</div><div class=""><br class=""></div><div class="">Also, as a minor point, going back to the original code, notice there are two diagnostic messages. The second one says, “use '__lldb_expr_52.' to reference the global function”. However, that does not work, and indeed every time I run the playground the number shown changes.</div><div class=""><br class=""></div><div class="">So it seems that in a playground, the diagnostic is incorrect, as the proposed solution does not work. Is there in fact a way to specify the module for a playground, so as to unambiguously call a global function?</div></div></div></blockquote><div><br class=""></div><div>That doesn’t work at the REPL because LLDB is handing you a new module context every time you execute an expression. &nbsp;When you factor this into a playground/framework/executable you can disambiguate with the name of the module.</div><br class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">&nbsp;• • •</div><div class=""><br class=""></div><div class="">In any case, the proper behavior seems clear-cut to my mind. The shorthand for calling an instance method without “self.” should apply only if there is a matching instance method to call. When there is no instance method which could possibly match, but there is a global function that does, then the unqualified call should resolve to the global function.</div></div></div></blockquote><div><br class=""></div><div>You may be able to get away with this by teaching lookup for overloads to pull in global declarations, but you’ll need to adjust the ranking to penalize this as well. This is assuming there aren’t scoping issues we’re ignoring with a rule that, at first blush, seems like common sense. &nbsp;I’m not sure this is StarterBug material - but updating the diagnostic to be more clear would definitely be.</div><div><br class=""></div><div>~Robert Widmann</div><div><br class=""></div><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class=""><br class=""></div><div class="">Nevin</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="gmail_extra"><br class=""><div class="gmail_quote">On Sun, Sep 24, 2017 at 10:16 PM, Robert Widmann <span dir="ltr" class="">&lt;<a href="mailto:devteam.codafi@gmail.com" target="_blank" class="">devteam.codafi@gmail.com</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class="">If either function had the correct signature and was being properly disambiguated there would not be a diagnostic popped.&nbsp; Can you provide an example of this?<span class="HOEnZb"><font color="#888888" class=""><div class=""><br class=""></div><div class="">~Robert Widmann</div></font></span><div class=""><div class="h5"><div class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Sep 24, 2017, at 8:58 PM, Nevin Brackett-Rozinsky &lt;<a href="mailto:nevin.brackettrozinsky@gmail.com" target="_blank" class="">nevin.brackettrozinsky@gmail.<wbr class="">com</a>&gt; wrote:</div><br class="m_-2883342060042295711Apple-interchange-newline"><div class="">The new diagnostic is fine, the problem is that there should not be&nbsp;an error at all.&nbsp;If there is only one function with the proper signature, the compiler should not invent a non-existent ambiguity.<div class=""><br class=""></div><div class="">The situation I encountered involves functions of different arities, so it should be straightforward to select the correct one, yet it still fails to compile. I'd like to make it work.</div><div class=""><br class=""></div><div class="">Nevin</div><div class=""><br class=""><br class="">On Sunday, September 24, 2017, Robert Widmann &lt;<a href="mailto:devteam.codafi@gmail.com" target="_blank" class="">devteam.codafi@gmail.com</a>&gt; wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This appears to be resolved (in fact, I remember improving this some time ago).&nbsp; I get a much better diagnostic now<br class="">
<br class="">
&gt; error: repl.swift:4:16: error: use of 'min' refers to instance method 'min()' rather than global function 'min' in module 'Swift'<br class="">
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return min(1,2)<br class="">
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ^<br class="">
&gt;<br class="">
&gt; repl.swift:4:16: note: use 'Swift.' to reference the global function in module 'Swift'<br class="">
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return min(1,2)<br class="">
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ^<br class="">
&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Swift.<br class="">
<br class="">
What version of Swift are you still seeing the bad diagnostic in?<br class="">
<br class="">
~Robert Widmann<br class="">
<br class="">
&gt; On Sep 24, 2017, at 12:03 PM, Nevin Brackett-Rozinsky via swift-dev &lt;<a class="">swift-dev@swift.org</a>&gt; wrote:<br class="">
&gt;<br class="">
&gt; I recently got bit by SR-2450, and I’d like to try to fix it. However, I’ve never worked on the compiler before and I have some questions:<br class="">
&gt;<br class="">
&gt; 1. Is this a reasonable first bug to tackle?<br class="">
&gt; 2. What resources are available for newcomers to the Swift project?<br class="">
&gt; 3. What will I need to learn about in order to address SR-2450?<br class="">
&gt;<br class="">
&gt; Thanks,<br class="">
&gt;<br class="">
&gt; Nevin<br class="">
&gt; ______________________________<wbr class="">_________________<br class="">
&gt; swift-dev mailing list<br class="">
&gt; <a class="">swift-dev@swift.org</a><br class="">
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-dev" target="_blank" class="">https://lists.swift.org/mailma<wbr class="">n/listinfo/swift-dev</a><br class="">
<br class="">
</blockquote></div>
</div></blockquote></div><br class=""></div></div></div></div></blockquote></div><br class=""></div></div>
</div></blockquote></div><br class=""></body></html>