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
Hovering the 0 index here triggers a type based hover which kind of works, but is not quite right.
More importantly though we fail to support downmapped tuple index accesses like in
assert!((S,).0 == (S,).0);
the 0 are getting highlighted as unresolved references.
This because we do not record these field accesses in the inference result due to them not having a declaration site as tuples are a builtin type with no declaration.
The text was updated successfully, but these errors were encountered:
Hovering the
0
index here triggers a type based hover which kind of works, but is not quite right.More importantly though we fail to support downmapped tuple index accesses like in
the
0
are getting highlighted as unresolved references.This because we do not record these field accesses in the inference result due to them not having a declaration site as tuples are a builtin type with no declaration.
The text was updated successfully, but these errors were encountered: