First, awesome project! Second... yes, it's the first thing I tried in it. Here's the repro: ```cs record A(int P1) { public A Node { get; set; } } var a = new A(5); a.Node = a; a ``` I suspect it's a problem of dotnet/interactive. Should I redirect the issue there?