You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package test
Foo :: struct {
variant: ^Bar,
}
Bar :: struct { x: int, }
// only happens when this is a pointer// |// vfoo:=&Foo{
variant=&Bar{},
// ^// |// and this is also a pointer
}
main :: proc() {
_=foo
}