Skip to content

Commit

Permalink
Fix array vs. element logical operator
Browse files Browse the repository at this point in the history
  • Loading branch information
kraigher committed Feb 5, 2023
1 parent 2597388 commit c982983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vhdl_lang/src/analysis/standard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ impl<'a> AnalyzeContext<'a> {
// A op S -> A
self.binary(op, atyp, atyp, styp, atyp),
// S op A -> A
self.binary(op, atyp, atyp, atyp, styp),
self.binary(op, atyp, styp, atyp, atyp),
]
.into_iter()
});
Expand Down

0 comments on commit c982983

Please sign in to comment.