verilator/test_regress/t/t_interface_param_loop_bad.v
Driss Hafdi dcbdac1b81 Tests: Unsupported test for bug1626.
Signed-off-by: Wilson Snyder <wsnyder@wsnyder.org>
2019-12-07 13:46:29 -05:00

23 lines
537 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2019 by Johan Bjork.
module t ();
simple_bus #(.WIDTH(simple.get_width())) sb_intf();
simple_bus #(.WIDTH(sb_intf.get_width())) simple();
initial begin
$write("*-* All Finished *-*\n");
$finish;
end
endmodule
interface simple_bus #(parameter int WIDTH = 8);
logic [WIDTH-1:0] data;
function automatic int get_width();
return WIDTH;
endfunction
endinterface