aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1063/matching.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue1063/matching.vhdl')
-rw-r--r--testsuite/gna/issue1063/matching.vhdl11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/issue1063/matching.vhdl b/testsuite/gna/issue1063/matching.vhdl
new file mode 100644
index 000000000..a9484c514
--- /dev/null
+++ b/testsuite/gna/issue1063/matching.vhdl
@@ -0,0 +1,11 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity matching is
+end matching;
+
+architecture behav of matching is
+ constant ceq : std_logic := '1' ?= '1';
+begin
+ assert ceq = '1';
+end behav;