Sign in
foss-fpga-tools
/
third_party
/
verible
/
0ad00f0b2a11ef48b7dba9a85905e4f4e7a91c88
/
.
/
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