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