aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug016/repro2.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug016/repro2.vhdl')
-rw-r--r--testsuite/gna/bug016/repro2.vhdl18
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/gna/bug016/repro2.vhdl b/testsuite/gna/bug016/repro2.vhdl
new file mode 100644
index 000000000..869197921
--- /dev/null
+++ b/testsuite/gna/bug016/repro2.vhdl
@@ -0,0 +1,18 @@
+configuration conf of repro is
+ for behav
+ for c : comp
+ use entity work.comp;
+ for behav
+ for c2 : comp2
+ use entity work.comp2 (behav);
+ end for;
+ end for;
+ end for;
+ end for;
+end conf;
+
+architecture behav of comp2 is
+begin
+ assert s = '1';
+end behav;
+