verilator/test_regress/t/t_inst_recurse2_bad.v
2017-11-18 17:42:35 -05:00

20 lines
317 B
Verilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2005 by Wilson Snyder.
module t (/*AUTOARG*/
// Inputs
clk
);
input clk;
looped looped ();
endmodule
module looped (/*AUTOARG*/);
looped looped ();
endmodule