aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1419/repro4.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue1419/repro4.vhdl')
-rw-r--r--testsuite/gna/issue1419/repro4.vhdl9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/gna/issue1419/repro4.vhdl b/testsuite/gna/issue1419/repro4.vhdl
new file mode 100644
index 000000000..1ebcb4f52
--- /dev/null
+++ b/testsuite/gna/issue1419/repro4.vhdl
@@ -0,0 +1,9 @@
+entity repro4 is
+end;
+
+architecture behav of repro4 is
+ type natural_array is array(natural range <>) of natural;
+
+ constant k : natural_array := (0, 1, -2);
+begin
+end;