Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1c596881d1a7fc4baa7972b1f16b2e3d461aa200
/
.
/
src
/
Testcases
/
Google
/
chapter-22
/
22.5.1--define-expansion_1.sv
blob: d252aaf54e79d99b49bf9d358a78c38fd14e534b [
file
]
/*
:name: 22.5.1--define_expansion_1
:description: Test
:should_fail: 0
:tags: 22.5.1
:type: preprocessing
*/
`define D(x,y) initial $display("start", x , y, "end");
module top ();
`
D
(
"msg1"
,
"msg2"
)
endmodule