diff options
author | Tristan Gingold | 2015-11-24 07:06:38 +0100 |
---|---|---|
committer | Tristan Gingold | 2015-11-25 03:39:08 +0100 |
commit | bd320d6260009f7d625bb70954d84bdec32b7917 (patch) | |
tree | 75e7e058c6de74da7506574648837985f57c2a34 /testsuite/gna/bug027/repro.vhdl | |
parent | d8667fd831a8281cdbc362e129a95db78010ffbc (diff) | |
download | ghdl-bd320d6260009f7d625bb70954d84bdec32b7917.tar.gz ghdl-bd320d6260009f7d625bb70954d84bdec32b7917.tar.bz2 ghdl-bd320d6260009f7d625bb70954d84bdec32b7917.zip |
Add reproducer for previous crash.
Diffstat (limited to 'testsuite/gna/bug027/repro.vhdl')
-rw-r--r-- | testsuite/gna/bug027/repro.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/bug027/repro.vhdl b/testsuite/gna/bug027/repro.vhdl new file mode 100644 index 0000000..0085a07 --- /dev/null +++ b/testsuite/gna/bug027/repro.vhdl @@ -0,0 +1,12 @@ +use work.pkg.all; +use work.all; + +entity repro is +end repro; + +architecture behav of repro is + component comp is + end component; +begin + c : comp; +end behav; |