macro_whitespace.sv 163 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
`define FOO(a, b) ((a)+(b))

module top;
    initial begin
        $display(`FOO
        (
            1
            ,
            2
        ));
    end
endmodule