aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue679/repro.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue679/repro.vhdl')
-rw-r--r--testsuite/gna/issue679/repro.vhdl14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/issue679/repro.vhdl b/testsuite/gna/issue679/repro.vhdl
new file mode 100644
index 000000000..2aa5e63df
--- /dev/null
+++ b/testsuite/gna/issue679/repro.vhdl
@@ -0,0 +1,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;