Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/variable/rule_403_test_input.fixed.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ begin
others => 'X'
);

variable v_result : string(1 to
2);

begin

end process;
Expand Down
3 changes: 3 additions & 0 deletions tests/variable/rule_403_test_input.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ begin
others => 'X'
);

variable v_result : string(1 to
2);

begin

end process;
Expand Down
2 changes: 1 addition & 1 deletion vsg/rules/variable/rule_403.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from vsg.token import variable_declaration as token

lTokenPairs = []
lTokenPairs.append([token.variable_keyword, token.semicolon])
lTokenPairs.append([token.assignment_operator, token.semicolon])


class rule_403(Rule):
Expand Down
Loading