<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></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 6. Aug 2017, at 17:15, Karl Wagner via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div></blockquote><blockquote type="cite" class=""><br class=""></blockquote><blockquote type="cite" class=""><span style="font-family: Menlo;" class="">let newItems_heap = newItems.backing.isAllocatedInline ? <b class="">newItems(withBacking: newItems.backing.clone())</b> : newItems</span></blockquote></div><br class=""><div class="">Should, of course, be:</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><span style="font-family: Menlo;" class="">let newItems_heap = newItems.backing.isAllocatedInline ? <b class="">Array(withBacking: newItems.backing.clone())</b> : newItems</span></blockquote></body></html>