Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
72126968c3e83ae65c36e5f2fe4358690145bc88
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-8
/
8.4--instantiation.sv
blob: 496e233166f662d25e035948c3838877ed31d8af [
file
]
/*
:name: instantiation
:description: simple class instantiation test
:should_fail: 0
:tags: 8.4
*/
module
class_tb
();
class
test_cls
;
int
a
;
endclass
test_cls test_obj
;
initial
begin
if
(
test_obj
==
null
)
test_obj
=
new
;
end
endmodule