verilator/test_regress/t/t_unpacked_concat_bad3.v

16 lines
363 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2019 by Driss Hafdi.
// SPDX-License-Identifier: CC0-1.0
module t (/*AUTOARG*/);
localparam logic [7:0] TOO_FEW [5] = '{0, 1, 2**8-1}; // Bad
initial begin
$display("%p", TOO_FEW);
$stop;
end
endmodule