diff options
Diffstat (limited to 'testsuite/gna/bug016/repro2.vhdl')
-rw-r--r-- | testsuite/gna/bug016/repro2.vhdl | 18 |
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 0000000..8691979 --- /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; + |