Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
91c065df031c31bc350c1052607ca347e71c741d
/
.
/
src
/
Testcases
/
Zachjs
/
lex
/
macro_whitespace.sv
blob: b1bb4889462c1ea0a4cabad311d993859e48c90e [
file
]
`define FOO(a, b) ((a)+(b))
module top;
initial begin
$display(`
FOO
(
1
,
2
));
end
endmodule