blob: 51bd79798d15b1447e6d0598af5c81c8551e9bad [file] [log] [blame]
/*
:name: properties
:description: class properties test
:should_fail: 0
:tags: 8.5
:type: simulation parsing
*/
module class_tb ();
class test_cls;
int a;
endclass
test_cls test_obj;
initial begin
test_obj = new;
test_obj.a = 12;
$display(":assert:(%d == 12)", test_obj.a);
end
endmodule