Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-8
/
8.5--properties.sv
blob: d40f0ba43f92928592db757383476bd6c3e71e02 [
file
] [
log
] [
blame
]
/*
:name: properties
:description: class properties test
:should_fail: 0
:tags: 8.5
*/
module
class_tb
();
class
test_cls
;
int
a
;
endclass
test_cls test_obj
;
initial
begin
test_obj
=
new
;
test_obj
.
a
=
12
;
$display
(
test_obj
.
a
);
end
endmodule