aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue679/repro.vhdl
blob: 2aa5e63df17129c73641665f2690d59b5fbe09c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
entity repro is
end repro;

architecture behav of repro is
   signal clk : bit;
   signal cyc: bit;
   signal wen : bit;
   signal lw : bit;
begin
   -- psl default clock is clk;

   -- psl c1: assert always lw -> cyc and (next not(wen))
   --  report "error";
end;