diff options
Diffstat (limited to 'testsuite/synth/issue1035/ent.vhdl')
-rw-r--r-- | testsuite/synth/issue1035/ent.vhdl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/issue1035/ent.vhdl b/testsuite/synth/issue1035/ent.vhdl new file mode 100644 index 000000000..9c8eb0b4e --- /dev/null +++ b/testsuite/synth/issue1035/ent.vhdl @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity ent is +end ent; + +architecture a of ent is + constant c : std_logic_vector(7 downto 0) := x"00"; +begin + process(all) + begin + case c is + when others => + end case; + end process; +end a; |