verilator/test_regress/t/t_inst_recurse2_bad.v

16 lines
332 B
Systemverilog
Raw Normal View History

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2005 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
2024-10-08 01:14:41 +02:00
module t (/*AUTOARG*/);
looped looped ();
endmodule
module looped (/*AUTOARG*/);
looped looped ();
endmodule