verilator/test_regress/t/t_opt_0.v

15 lines
375 B
Systemverilog
Raw Normal View History

2025-07-10 01:11:48 +02:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2025 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
module t;
for (genvar k = 0; k < 1; k++) begin : gen_empty
// empty
end
initial for (int i = 0; i < 1; i++) begin : gen_i
// empty
end
endmodule