Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
5116133e9d8aa43e4097998303280bdb37ca7200
/
.
/
SVIncCompil
/
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