<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Jan 26, 2016 at 9:14 AM, Joe Groff via swift-evolution <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:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word"><span class=""><div>`lazy var`s still can&#39;t refer to self today AFAIK (I know we tried to fix that, but we still get plenty of radars saying it doesn&#39;t work…), so I don&#39;t think it would be a regression for a behavior implementation not to immediately be able to either. (And I&#39;m not proposing we immediately replace our existing &#39;lazy&#39; implementation immediately either.)</div></span></div></blockquote><div><br></div><div>They can; it just requires a type annotation.</div><div><br></div><div>class C {</div><div>    lazy var b: B = B(c: self)</div><div>}</div><div><br></div><div>struct B {</div><div>    let c: C</div><div>}</div></div></div></div>