verilator/test_regress/t/t_assert_imm_nz_bad.v

16 lines
324 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2022 by Antmicro Ltd.
// SPDX-License-Identifier: CC0-1.0
module t (/*AUTOARG*/
clk
);
input clk;
labeled_imas: assert #1 (clk); // BAD: #1
endmodule