aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-09-30 20:08:43 +0200
committerTristan Gingold <tgingold@free.fr>2019-09-30 20:08:43 +0200
commited4c48c6b2484059535a4d9642b3c13f53ee33ed (patch)
tree0feae43fefb620ce606305546d135499cb082114 /testsuite/gna
parentb969c4e05092da8d9d8de412220b1d5952f7231c (diff)
downloadghdl-ed4c48c6b2484059535a4d9642b3c13f53ee33ed.tar.gz
ghdl-ed4c48c6b2484059535a4d9642b3c13f53ee33ed.tar.bz2
ghdl-ed4c48c6b2484059535a4d9642b3c13f53ee33ed.zip
testsuite: add test for previous commit.
Diffstat (limited to 'testsuite/gna')
-rw-r--r--testsuite/gna/bug090/bad5.vhdl11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/bug090/bad5.vhdl b/testsuite/gna/bug090/bad5.vhdl
new file mode 100644
index 000000000..6ed32650f
--- /dev/null
+++ b/testsuite/gna/bug090/bad5.vhdl
@@ -0,0 +1,11 @@
+entity e5 is
+end e5;
+
+architecture behav of e5 is
+ type my_rec is record
+ b : boolean;
+ n : work.no_pkg.no_type;
+ end record;
+ constant cst : my_rec := (b => true, n => (others => true));
+begin
+end behav;