@nikitonsky it looks like this is visionOS beta with Apple’s live webpage and they have a new feature that lets pages be visible up behind the top-of-window controls and that looks awful when there’s a fixed top-of-view header, right?
They probably should have updated their site to play nice with it. It brings up a good point that many sites won’t update just for Apple and will look ugly like this. Fingers crossed that they can infer when it will be ugly and handle it better.
Hey @Joe_Groff :) I've stumbled into this some time ago(SR-12755), and for work around I did something like struct Recursive { var value: Int private var _next: [Recursive?] = [nil] var next: Recursive? { get { _next[0] } set { _next[0] = nil } } } which does works. But this should really work? What are the effects on type layout in this case and how the recursive optional of same type inside the array is handled? Thanks in advance.