We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 71e5d93 + a1da5c7 commit b9b7133Copy full SHA for b9b7133
regression/verilog/nettype/nettype1.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+nettype1.sv
3
+
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+nettype is not implemented.
regression/verilog/nettype/nettype1.sv
@@ -0,0 +1,11 @@
+module main;
+ nettype logic [31:0] some_word_type;
+ nettype logic signed [31:0] some_signed_type;
+ some_word_type some_word;
+ some_signed_type some_signed;
+ p0: assert final ($bits(some_word) == 32);
10
11
+endmodule
0 commit comments