Files
sv2v/test/lex/begin_keywords.v
Zachary Snow 0a7b0250e7 fix 1364-2001 and 1364-2001-noconfig keywords mixup
- swap 1364-2001 and 1364-2001-noconfig
- fix existing begin_keywords test
- add keyword test suite for all keywords
2023-05-15 22:21:23 -04:00

27 lines
431 B
Verilog

module top;
task foo;
integer x;
begin
x = 2;
$display(x * x);
end
endtask
task bar;
integer y;
begin
y = 3;
$display(y * y);
end
endtask
task baz;
integer w;
begin
w = 3;
$display(w ** w);
end
endtask
initial foo;
initial bar;
initial baz;
endmodule