aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1311/issue.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1311/issue.vhdl')
-rw-r--r--testsuite/synth/issue1311/issue.vhdl12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/synth/issue1311/issue.vhdl b/testsuite/synth/issue1311/issue.vhdl
new file mode 100644
index 000000000..41575a46b
--- /dev/null
+++ b/testsuite/synth/issue1311/issue.vhdl
@@ -0,0 +1,12 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity issue is
+ port (foo : out boolean);
+end issue;
+
+architecture beh of issue is
+ signal bar : std_logic_vector (7 downto 0);
+begin
+ foo <= bar (0 downto 1) = bar (1 downto 2);
+end architecture beh;