verilator/test_regress/t/t_lint_declfilename_bbox.v
Wilson Snyder cff37f0775 Add GENUNNAMED lint warning.
Also fix generate-for blocks with empty statements getting lost.
2023-07-01 08:31:53 -04:00

14 lines
385 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2010 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
module t_lint_declfilename_bbox ();
parameter IN = 0;
if (IN) begin : gen_hasbbox
// Should not warn, see bug2430
BLACKBOXED bboxed ();
end
endmodule