Sign in
foss-fpga-tools
/
third_party
/
verible
/
bbe85ac0e45bb1e955b2b705e5b21d4a00a39b66
/
.
/
verilog
/
tools
/
lint
/
testdata
/
object_creation_name.sv
blob: 5a7ae27ffca88689d14a2a87ca18093fdb088d8e [
file
] [
log
] [
blame
]
module
object_creation_name
;
initial
begin
// This is good
cool_driver_h
=
cool_driver
::
type_id
::
create
(
"cool_driver_h"
,
this
);
// This is bad
cool_driver_h
=
cool_driver
::
type_id
::
create
(
"not_cool_driver_h"
,
this
);
end
endmodule