We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c47d5cb commit 694cf02Copy full SHA for 694cf02
gcc/rust/resolve/rust-ast-verify-assignee.h
@@ -75,6 +75,13 @@ class VerifyAsignee : public ResolverBase
75
}
76
77
78
+ void visit (AST::DereferenceExpr &expr) override
79
+ {
80
+ expr.get_dereferenced_expr ()->accept_vis (*this);
81
+ }
82
+
83
+ void visit (AST::PathInExpression &expr) override { ok = true; }
84
85
private:
86
VerifyAsignee (NodeId parent) : ResolverBase (parent), ok (false) {}
87
0 commit comments