<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><div class=""><blockquote type="cite" class=""><div class="">On Dec 13, 2015, at 11:56 PM, Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><div class=""><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Dec 13, 2015, at 3:55 PM, Marc Knaup via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div></blockquote></div></div></div></blockquote><blockquote type="cite" class="" style="font-family: HelveticaNeue;"><div class=""><div dir="ltr" class=""><div class=""><blockquote type="cite" class=""><blockquote type="cite" class="">Is there any info yet if and how we will be able to refer to instances of protocols that have associated types?</blockquote></blockquote></div></div></div></blockquote><blockquote type="cite" class=""><blockquote type="cite" class=""><br class=""></blockquote></blockquote><div style="font-family: HelveticaNeue;" class=""><blockquote type="cite" class=""><blockquote type="cite" class="">As far as I know, this isn't a solvable problem.</blockquote></blockquote></div></div><div class=""><blockquote type="cite" class=""><blockquote type="cite" class=""><br class=""></blockquote></blockquote></div><blockquote type="cite" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><div class="">What is the difficulty in supporting this?</div></div></div></blockquote><br class=""></div><div class="">Here's a simple example:</div><div class=""><br class=""></div><div class="">protocol P {</div><div class="">&nbsp; typealias A</div><div class="">&nbsp; var x: A { get set }</div><div class="">}</div><div class=""><br class=""></div><div class="">struct Y : P {</div><div class="">&nbsp; var x: Int</div><div class="">}</div><div class=""><br class=""></div><div class="">struct Z : P {</div><div class="">&nbsp; var x: String</div><div class="">}</div><div class=""><br class=""></div><div class="">func f(p1: P, p2: P) {</div><div class="">&nbsp; p1.x = p2.x // assigning an Int to a String?</div><div class="">}</div></div></blockquote><br class=""></div><div>p1.x = p2.x should be a compiler error, because there’s not enough type information. But that shouldn’t stop a programmer from doing this:</div><div><br class=""></div><div><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="">protocol P {</div><div class="">&nbsp; typealias A</div><div class="">&nbsp; var x: A { get set }</div></div><div class="">&nbsp; var y: Int</div><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="">}</div><div class=""><br class=""></div><div class="">struct Y : P {</div><div class="">&nbsp; var x: Int</div></div><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="">&nbsp; var y: Int</div></div><div><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"></div></div><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="">}</div><div class=""><br class=""></div><div class="">struct Z : P {</div><div class="">&nbsp; var x: String</div></div><div class="">&nbsp; var y: Int<br class=""></div><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="">}</div><div class=""><br class=""></div></div><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="">func maxY(p1: P, p2: P) -&gt; Int {</div><div class="">&nbsp; return max(p1.y, p2.y) &nbsp; // No problems here!</div><div class="">}</div></div><div class=""><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class=""><br class=""></div><div class="">…right?</div><div class=""><br class=""></div><div class="">Cheers, P</div><div class=""><br class=""></div></div></div></div></body></html>