verilator/test_regress/t/t_interface_paren_missing_b...

16 lines
347 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, 2023 by Goekce Aydos.
// SPDX-License-Identifier: CC0-1.0
2024-11-10 02:20:54 +01:00
// Interface instantiation without parenthesis
interface intf;
endinterface
module t;
intf intf_i;
initial $finish;
endmodule