diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-04-22 07:59:10 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-04-22 07:59:10 +0200 |
commit | 791ff0c17bcaa8192ce25beda4392246fda9e8f7 (patch) | |
tree | d3065e59a880d3238ec6f4be96d5e000d77c0bad /testsuite/gna/bug0130/word_entity.vhdl | |
parent | f4ae3a544fcf718802aac3aa59f9b11bd8387b21 (diff) | |
download | ghdl-791ff0c17bcaa8192ce25beda4392246fda9e8f7.tar.gz ghdl-791ff0c17bcaa8192ce25beda4392246fda9e8f7.tar.bz2 ghdl-791ff0c17bcaa8192ce25beda4392246fda9e8f7.zip |
testsuite/gna: add tests for previous commit
Diffstat (limited to 'testsuite/gna/bug0130/word_entity.vhdl')
-rw-r--r-- | testsuite/gna/bug0130/word_entity.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/bug0130/word_entity.vhdl b/testsuite/gna/bug0130/word_entity.vhdl new file mode 100644 index 000000000..f619d8c8b --- /dev/null +++ b/testsuite/gna/bug0130/word_entity.vhdl @@ -0,0 +1,14 @@ + +entity word_entity is + generic ( + package word40 is new work.word_generic_pkg + generic map ( + LENGTH => 40 + ) + ); +end entity; + +architecture foo of word_entity is +begin +end architecture; + |