Files
sv2v/test/error/port_not_in_header.sv
Zachary Snow 95c2bc996c support for common non-ANSI style port declarations
Specifically, support has been added for non-ANSI style port
declarations where the port declaration is separate from the
corresponding net or variable declaration.
2021-09-06 21:10:49 -04:00

5 lines
115 B
Systemverilog

// pattern: declared ports w, z are not in the port list of top
module top(x, y);
output w, x, y, z;
endmodule