sv2v/test/lex/undefineall.sv

8 lines
90 B
Systemverilog

`define A
`undefineall
`ifndef A
module top;
initial $display("hi");
endmodule
`endif