aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug090/bad5.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug090/bad5.vhdl')
-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;