Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-8
/
8.4--instantiation.sv
blob: 496e233166f662d25e035948c3838877ed31d8af [
file
] [
log
] [
blame
]
/*
: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