10 lines
177 B
Coq
10 lines
177 B
Coq
|
|
module test;
|
||
|
|
parameter x = "String with escaped backslash at end \\";
|
||
|
|
initial
|
||
|
|
`ifdef __ICARUS__
|
||
|
|
$display("PASSED");
|
||
|
|
`else
|
||
|
|
$display("Not Icarus\nPASSED");
|
||
|
|
`endif
|
||
|
|
endmodule
|