iverilog/ivtest/ivltests/sv_interface_identifier_blo...

13 lines
172 B
Verilog

// Check that a procedural block can match a visible interface name.
interface I;
endinterface
module test;
initial begin : I
$display("PASSED");
end
endmodule