From 357cb9746c53e3f32fc9c2f28686c25e388918c3 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Thu, 12 Aug 2021 13:06:11 +0200 Subject: Preparations for sequential statements. --- testsuite/pyunit/Current.vhdl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'testsuite') diff --git a/testsuite/pyunit/Current.vhdl b/testsuite/pyunit/Current.vhdl index a63a3c75f..f97d831b9 100644 --- a/testsuite/pyunit/Current.vhdl +++ b/testsuite/pyunit/Current.vhdl @@ -94,6 +94,26 @@ begin Q <= std_logic_vector(unsigned(Q) + 1); end if; end if; + + for i in 7 downto 0 loop + loop + while true loop + next; + next when true; + end loop; + exit; + exit when true; + end loop; + return; + end loop; + + case foo_bar is + when 0 => + when 1 | 2 => + when 3 to 4 => + when 5 to 6 | 8 to 9 => + when others => + end case; end process; a <= b; -- cgit v1.2.3