aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/libghdl/process_fail.vhdl
blob: 819e5ea6ebe74a94831a2fe55122e6157d657317 (plain)
1
2
3
4
5
6
7
8
9
architecture arch of e is
  signal s, s_n : bit;
begin
  --  Comment
  p : process (s)
  begin
    s <= not s_n;
  end process;
end arch;