Hello, I have the following struct:
struct S(Movable):
var x: Optional[ArcPointer[S]]
The code doesn’t compile, the error message is: “struct has recursive reference to itself“
Am I overlooking something? The following compiles without errors:
struct S(Movable):
var x: ArcPointer[S]