sv2v/test/lex/begin_keywords.sv

17 lines
311 B
Systemverilog
Raw Normal View History

2019-10-12 01:32:10 +02:00
`begin_keywords "1364-2001-noconfig"
task foo;
integer automatic = 2;
$display(automatic * automatic);
endtask
`begin_keywords "1364-2005"
task automatic bar;
integer logic = 3;
$display(logic * logic);
endtask
`end_keywords
`end_keywords
module top;
initial foo;
initial bar;
endmodule