mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-02 02:17:13 +02:00
fix typename decl asgn lookahead (resolves #49)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
typedef wire b_t;
|
||||
module top(
|
||||
input a [1:0],
|
||||
input b_t b
|
||||
);
|
||||
initial $display("%d %d %1d %1d", a, b, $bits(a), $bits(b));
|
||||
endmodule
|
||||
@@ -0,0 +1,6 @@
|
||||
module top(
|
||||
input [1:0] a,
|
||||
input wire b
|
||||
);
|
||||
initial $display("%d %d %1d %1d", a, b, $bits(a), $bits(b));
|
||||
endmodule
|
||||
Reference in New Issue
Block a user