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/property/named_property4.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
KNOWNBUG
named_property4.sv

^EXIT=10$
^SIGNAL=0$
--
^warning: ignoring
--
This triggers an internal error.
10 changes: 10 additions & 0 deletions regression/verilog/property/named_property4.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module main(input a, b);

// a property that is a sequence
property lemma;
a ##1 b
endproperty

assert property (lemma);

endmodule
Loading