We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a3573b5 + b238b33 commit cbc268eCopy full SHA for cbc268e
regression/verilog/enums/enum_base_type2.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+enum_base_type2.sv
3
+--bound 0
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+^\[.*\] always 8 == 8: PROVED up to bound 0$
7
+--
8
9
+The base type of an enum may depend on an elaboration-time constant.
regression/verilog/enums/enum_base_type2.sv
@@ -0,0 +1,11 @@
+module main;
+
+ // The base type of an enum may depend on an elaboration-time constant.
+ typedef enum bit [p:1] { A } enum_t;
+ parameter p = 8;
+ // expected to pass
+ p1: assert property ($bits(A) == p);
10
11
+endmodule
0 commit comments