Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions regression/verilog/modules/ports9.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
KNOWNBUG
ports9.sv
--bound 1
^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
--
This gives the wrong answer.
15 changes: 15 additions & 0 deletions regression/verilog/modules/ports9.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module sub(input in, output logic data);

assign data = in;

endmodule

module main;
logic subout;

sub sub_inst(.data(subout));

// The value of the output needs to be able to change
cover property (##1 subout != $past(subout));

endmodule
Loading