fix premature elaboration of single element patterns

This commit is contained in:
Zachary Snow
2020-12-07 16:23:29 -07:00
parent ad18c583ab
commit d137fd3d68
3 changed files with 21 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
module top;
wire [2:0] s = 3'b110;
initial #1 $display("%b", s);
endmodule