blob: 0eab496c50401af83a142c2c5c9204d445bbb5d0 [file] [log] [blame]
/*
:name: constructor
:description: class constructor test
:should_fail: 0
:tags: 8.7
:type: simulation parsing
*/
module class_tb ();
class test_cls;
int a;
function new();
a = 42;
endfunction
endclass
initial begin
test_cls test_obj = new;
$display(":assert:(%d == 42)", test_obj.a);
end
endmodule