sv2v/test/error/port_not_in_header.sv

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