diff options
Diffstat (limited to 'testsuite/gna/ticket88/bug.vhdl')
-rw-r--r-- | testsuite/gna/ticket88/bug.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/ticket88/bug.vhdl b/testsuite/gna/ticket88/bug.vhdl new file mode 100644 index 000000000..fd0a93d5c --- /dev/null +++ b/testsuite/gna/ticket88/bug.vhdl @@ -0,0 +1,12 @@ +entity ent is +end entity; + +architecture a of ent is + component comp is + end component; + + for inst : comp use configuration cfg; +begin + inst : comp; +end architecture; + |