sv2v/test/lex/line.sv

8 lines
149 B
Systemverilog

module top;
initial begin
$display(`__FILE__, `__LINE__);
`line 101 "fake.v" 1
$display(`__FILE__, `__LINE__);
end
endmodule