sv-parser/sv-parser-pp/testcases/expected/include_withindent.sv

10 lines
85 B
Systemverilog

module and_op (a, b, c);
// a
output a;
input b, c;
and a1 (a,b,c);
endmodule