Cool. Another avenue of improvement here is relaxing the single-class spelling rule for the sake of composing typealiases.<br><br>As Matthew mentioned, if I have class Base and typealiases Foo = Base &amp; Protocol1 and Bar = Base &amp; Protocol2, it&#39;d be nice to allow Foo &amp; Bar.<br><br>It&#39;d be nice to go one step further: given class Derived : Base, if I have typealiases Foo2 = Base &amp; Protocol1 and Bar2 = Derived &amp; Protocol2, then it could be permitted to write Foo2 &amp; Bar2, since there is effectively only one subclass requirement (Derived).<br><br>As I understand it, the rationale for allowing only one subclass requirement is that Swift supports only single inheritance. Thus, two disparate subclass requirements Base1 &amp; Base2 would make your existential type essentially equivalent to Never. But Base1 &amp; Base1 &amp; Base1 is fine for the type system, the implementation burden (though greater) shouldn&#39;t be too awful, and you would measurably improve composition of typealiases.<br><div class="gmail_quote"><div dir="ltr">On Sun, Jan 29, 2017 at 12:41 Austin Zheng &lt;<a href="mailto:austinzheng@gmail.com">austinzheng@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">The &quot;class comes first&quot; requirement made more sense when the proposed syntax was still &quot;Any&lt;T, U, V&gt;&quot;, intentionally mirroring how the superclass and conformances are declared on a class declaration (the archives contain more detailed arguments, both pro and con). Now that the syntax is &quot;T &amp; U &amp; V&quot;, I agree that privileging the class requirement is counterintuitive and probably unhelpful.<br class="gmail_msg">
<br class="gmail_msg">
Austin<br class="gmail_msg">
<br class="gmail_msg">
&gt; On Jan 29, 2017, at 10:37 AM, Matt Whiteside via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; Thanks for writing this proposal David.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt;&gt; On Jan 29, 2017, at 10:13, Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; As Matthew mentioned, the rules can certainly later be relaxed, but given that this proposal has the compiler generating fix-its for subclasses in second position, is there a reason other than stylistic for demanding MyClass &amp; MyProtocol instead of MyProtocol &amp; MyClass?<br class="gmail_msg">
&gt;&gt;<br class="gmail_msg">
&gt;&gt; From a naive perspective, it seems that if the compiler understands my meaning perfectly, it should just accept that spelling rather than complain.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; I had that thought too.  Since ‘and’ is a symmetric operation, requiring the class to be in the first position seems counter-intuitive.<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; -Matt<br class="gmail_msg">
&gt;<br class="gmail_msg">
&gt; _______________________________________________<br class="gmail_msg">
&gt; swift-evolution mailing list<br class="gmail_msg">
&gt; <a href="mailto:swift-evolution@swift.org" class="gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail_msg">
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="gmail_msg">
<br class="gmail_msg">
</blockquote></div>