aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/noconst.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug0100/noconst.vhdl')
-rw-r--r--testsuite/gna/bug0100/noconst.vhdl8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/noconst.vhdl b/testsuite/gna/bug0100/noconst.vhdl
new file mode 100644
index 000000000..78284d16e
--- /dev/null
+++ b/testsuite/gna/bug0100/noconst.vhdl
@@ -0,0 +1,8 @@
+entity noconst is
+end noconst;
+
+architecture arch of noconst is
+ type map_type is array(bit) of character;
+ constant smap : map_type := "";
+begin
+end;