sv2v/test/core/elab_task.sv

12 lines
174 B
Systemverilog

module top;
$info;
$info("%b", 1);
$warning;
$warning("%b", 2);
$error;
$error("%b", 3);
$fatal;
$fatal(0);
$fatal(0, "%b", 4);
endmodule