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
identity :: proc(a: [2]int) -> [2]int {return a}
foo: [2]int
bar := identity(foo).x
// ^// Go to def for 'foo' goes to 'identity' on the same line// Go to refs for 'foo' goes to '.x' on the same line// Type info on hover works fine
Removing .x fixes this
Also the same happens for structs too, not just vecs
The text was updated successfully, but these errors were encountered:
Removing
.x
fixes thisAlso the same happens for structs too, not just vecs
The text was updated successfully, but these errors were encountered: