verilator/test_regress/t/t_lint_latch_5.v
2022-03-27 14:42:36 -04:00

20 lines
414 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module for Issue#2863
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2021 by Julien Margetts (Originally provided by Thomas Sailer)
module test
(input logic [1:0] a,
input logic e,
output logic [1:0] z);
always_latch
if (e)
z[0] <= a[0];
always_latch
if (e)
z[1] <= a[1];
endmodule