Skip to content

Commit 0b3de4e

Browse files
committed
KNOWNBUG test for named property
1 parent 5f2c37e commit 0b3de4e

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
KNOWNBUG
2+
named_property3.sv
3+
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
--
7+
^warning: ignoring
8+
--
9+
The expression in the named property is not lowered.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module main;
2+
3+
wire [31:0] x = 'b10010001;
4+
5+
property with_index;
6+
x[7:4] == 'b1001
7+
endproperty
8+
9+
assert property (with_index);
10+
11+
endmodule

0 commit comments

Comments
 (0)