mirror of https://github.com/zachjs/sv2v.git
6 lines
177 B
Systemverilog
6 lines
177 B
Systemverilog
|
|
// pattern: declarations `output a = 1` and `logic a` are incompatible due to invalid initialization at port declaration
|
||
|
|
module top(a);
|
||
|
|
output a = 1;
|
||
|
|
logic a;
|
||
|
|
endmodule
|