blob: e31b771231b0760f7bda5ae7ff5489d6ebe67dd7 [file] [log] [blame]
/*
:name: interface_instantiation
:description: instantiating an interface class
:should_fail: 1
:tags: 8.26.5
:type: simulation
*/
module class_tb ();
interface class ihello;
pure virtual function void hello();
endclass
ihello obj;
initial begin
obj = new;
end
endmodule