Files
sv2v/test/error/module_import_missing_package.sv

5 lines
122 B
Systemverilog
Raw Permalink Normal View History

2021-01-23 16:50:06 -07:00
// pattern: could not find package "PackageThatDoesNotExist"
module top;
import PackageThatDoesNotExist::*;
endmodule