blob: 06bddde3b5898d28df84414052ab30d0fc2372cb [file] [log] [blame]
/*
:name: static_properties
:description: static class properties test
:should_fail: 0
:tags: 8.9
*/
module class_tb ();
class test_cls;
static int s = 24;
endclass
test_cls test_obj0;
test_cls test_obj1;
initial begin
test_obj0 = new;
test_obj1 = new;
test_obj0.s = 12;
$display(test_obj0.s);
test_obj0.s = 13;
$display(test_obj1.s);
end
endmodule