diff options
Diffstat (limited to 'testsuite/gna/bug16/repro.vhdl')
-rw-r--r-- | testsuite/gna/bug16/repro.vhdl | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/testsuite/gna/bug16/repro.vhdl b/testsuite/gna/bug16/repro.vhdl deleted file mode 100644 index d82cc58..0000000 --- a/testsuite/gna/bug16/repro.vhdl +++ /dev/null @@ -1,29 +0,0 @@ -entity repro is -end repro; - -architecture behav of repro is - component comp is - port (s : bit); - end component; - signal s : bit; -begin - c : comp port map (s); -end behav; - -entity comp is - port (s : bit); -end comp; - -configuration conf of repro is - for behav - for c : comp - use entity work.compx (behav); - end for; - end for; -end conf; - -architecture behav of comp is -begin - assert s = '1'; -end behav; - |