diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-03-12 18:52:46 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-03-12 18:52:46 +0100 |
commit | aff48727a4d0ad4058b7d43a86ebd6ed24b9cc6d (patch) | |
tree | 96160d9e79f6ac2fb30efe411dfda4c81ffc8f9b /testsuite/synth/issue2002/bug.vhdl | |
parent | b6f0ff834c3b221ab5b2380c871d76c83808493b (diff) | |
download | ghdl-aff48727a4d0ad4058b7d43a86ebd6ed24b9cc6d.tar.gz ghdl-aff48727a4d0ad4058b7d43a86ebd6ed24b9cc6d.tar.bz2 ghdl-aff48727a4d0ad4058b7d43a86ebd6ed24b9cc6d.zip |
testsuite/synth: add test for #2002
Diffstat (limited to 'testsuite/synth/issue2002/bug.vhdl')
-rw-r--r-- | testsuite/synth/issue2002/bug.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/synth/issue2002/bug.vhdl b/testsuite/synth/issue2002/bug.vhdl new file mode 100644 index 000000000..176dcea0d --- /dev/null +++ b/testsuite/synth/issue2002/bug.vhdl @@ -0,0 +1,14 @@ +library IEEE; +use IEEE.std_logic_1164.all; + +entity bug is + port ( + o : out std_ulogic_vector(33 downto 0) + ); +end bug; + +architecture struct of bug is + constant c : std_ulogic_vector(33 downto 0) := "0000000000000000000000000001111100"; +begin + o <= c; +end architecture; |