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