blob: 3e8158c211170d0ec35829a12b1be70a0f546bf2 [file] [log] [blame]
/*
:name: 22.5.1--define_expansion_24
:description: Test
:should_fail: 0
:tags: 22.5.1
:type: preprocessing
*/
module top ();
`define HI Hello
`define LO "`HI, world"
`define H(x) "Hello, x"
initial begin
$display("`HI, world");
$display(`LO);
$display(`H(world));
end
endmodule