Skip to content

Commit c982983

Browse files
committed
Fix array vs. element logical operator
1 parent 2597388 commit c982983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vhdl_lang/src/analysis/standard.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ impl<'a> AnalyzeContext<'a> {
909909
// A op S -> A
910910
self.binary(op, atyp, atyp, styp, atyp),
911911
// S op A -> A
912-
self.binary(op, atyp, atyp, atyp, styp),
912+
self.binary(op, atyp, styp, atyp, atyp),
913913
]
914914
.into_iter()
915915
});

0 commit comments

Comments
 (0)