A given scope contains more than one import statement for the same package and name.
Duplicated imports statements are useless and should be removed.
package p; int i; endpackage module top; import p::i; import p::i; // Noncompliant endmodule
package p; int i; endpackage module top; import p::i; endmodule