<div dir="ltr">Thanks Gwendal, that makes sense - for the case where Shape is a protocol.<div><br></div><div>Since the OP wasn&#39;t clear about it, I tried the original example with both the cases where Shape was declared as a protocol (i.e. Circle conforms) and where Shape was declared as a class (i.e. Circle inherits). The same problem occurs when Shape is a concrete type. Does the same explanation apply? i.e. the &#39;MyShapeProtocol&#39; trampoline has the same problem you&#39;ve described?</div><div><br></div><div>Yogev: this is the first stage - discussion on the list. The formal next stage, assuming that there&#39;s some list support and the idea isn&#39;t on the list of &#39;commonly rejected ideas&#39; (I&#39;ve been burned by this) is to write a proposal using the draft proposal document in the Swift Evolution github repository, and make a pull request. In due course proposals will be scheduled for review. If a pull request for an implementation of an acceptable proposal exists, the review may happen that much faster.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Apr 18, 2016 at 11:43 AM, Gwendal Roué <span dir="ltr">&lt;<a href="mailto:gwendal.roue@gmail.com" target="_blank">gwendal.roue@gmail.com</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>Those &quot;trampolines&quot; are visible in debugger stack traces, or in Instruments, as &quot;protocol witness&quot; function calls. You may have seen them already.</div><div><br></div><div>You see, a variable of type SomeProtocol, or the result of a method that returns a protocol, does not contain a value of any concrete type that adopts the protocol.</div><div><br></div><div>Instead, it contains a description of what should happen when a protocol method is called. It&#39;s an indirection. An indirection that happens at runtime. The compiler says: &quot;I have to store a value of type T in a variable declared as protocol P. I&#39;ll actually store the fact that when the function f() of the protocol is called, it will actually call the function f() of the type T.&quot; And those redirections are visible as &quot;protocol witness&quot; in our stack traces.</div><div><br></div><div>This allows a function that uses a Swift protocols to be used with types that are not known yet by the compiler, such as the types defined by the user that use a framework. Compile once, and run later, through the indirection.</div><div><br></div><div>This also explains why it&#39;s not trivial to implement Yogev&#39;s request: a value of type Circle (concrete type) has not the same memory layout than a value of type Shape (a protocol trampoline). The same for functions that involve those types. Some conversion has to happen, and this conversion must happen at runtime, as we&#39;ve seen above. Such support is not implemented (yet ?).</div><div><br></div><div>I hope I was clear :-)</div><span class="HOEnZb"><font color="#888888"><div>Gwendal</div></font></span><div><div class="h5"><div><br></div><br><div><blockquote type="cite"><div>Le 18 avr. 2016 à 12:19, Ross O&#39;Brien &lt;<a href="mailto:narrativium+swift@gmail.com" target="_blank">narrativium+swift@gmail.com</a>&gt; a écrit :</div><br><div><div dir="ltr">You may have to explain that metaphor (or link to an explanation) - what is &#39;trampoline&#39; data?</div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Apr 18, 2016 at 11:11 AM, Gwendal Roué <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"><span><br>
&gt; Le 18 avr. 2016 à 12:01, Yogev Sitton &lt;<a href="mailto:yogev.sitton@gmail.com" target="_blank">yogev.sitton@gmail.com</a>&gt; a écrit :<br>
&gt;<br>
&gt; I’m referring you to Ross O’Brien’s post:<br>
&gt; As of Swift 2.2, if a variable has a closure type of e.g. () -&gt; Shape, a closure of type () -&gt; Circle would be considered a match.  If a class implements &#39;func make() -&gt; Shape&#39;, a subclass implementing &#39;func make() -&gt; Circle&#39; has to override. However, if a protocol requires a &#39;func make() -&gt; Shape&#39;, a type implementing &#39;func make() -&gt; Circle&#39; isn&#39;t considered to be conforming. That does seem strange.<br>
&gt;<br>
&gt; Protocols behaves differently than closures and classes and I think they should behave the same.<br>
<br>
</span>All right, I get it.<br>
<br>
Shape, as a return type, is &quot;trampoline&quot; data that wraps any Shape value, when Circle is just a Circle. That&#39;s why the two functions () -&gt; Shape? and () -&gt; Circle? don&#39;t match today.<br>
<br>
But maybe they will eventually, thanks to your request!<br>
<div><div><br>
Gwendal<br>
<br>
_______________________________________________<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" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</div></div></blockquote></div><br></div>
</div></blockquote></div><br></div></div></div></blockquote></div><br></div>