aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuite/gna/issue1063/matching.vhdl8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuite/gna/issue1063/matching.vhdl b/testsuite/gna/issue1063/matching.vhdl
index a9484c514..3bd4588f2 100644
--- a/testsuite/gna/issue1063/matching.vhdl
+++ b/testsuite/gna/issue1063/matching.vhdl
@@ -5,7 +5,11 @@ entity matching is
end matching;
architecture behav of matching is
- constant ceq : std_logic := '1' ?= '1';
+ constant ceq11 : std_logic := '1' ?= '1';
+ constant ceq1h : std_logic := '1' ?= 'H';
+ constant ceq1w : std_logic := '1' ?= 'W';
begin
- assert ceq = '1';
+ assert ceq11 = '1';
+ assert ceq1h = '1';
+ assert ceq1w = 'X';
end behav;