aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1361/repro3err.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue1361/repro3err.vhdl')
-rw-r--r--testsuite/gna/issue1361/repro3err.vhdl15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/issue1361/repro3err.vhdl b/testsuite/gna/issue1361/repro3err.vhdl
new file mode 100644
index 000000000..9d7b82007
--- /dev/null
+++ b/testsuite/gna/issue1361/repro3err.vhdl
@@ -0,0 +1,15 @@
+ENTITY repro3err IS
+END repro3err;
+
+ARCHITECTURE behav of repro3err IS
+ CONSTANT AddrRANGE : NATURAL := 16#0FFFFFF#;
+
+ TYPE MemArray IS ARRAY (0 TO AddrRANGE) OF bit_vector;
+begin
+ process
+ VARIABLE Mem : MemArray(open)(7 downto 0) := (OTHERS => x"00");
+ begin
+ Mem := (OTHERS => x"fff");
+ WAIT;
+ END PROCESS;
+END behav;