According to 19.2.2, the following is illegal module foo; import q::*; wire a = c; // This statement forces the import of q::c; import p::c; // The conflict with q::c and p::c creates an error. endmodule But the following is still legal, isn't it? module foo; import q::*; import p::c; wire a = c; endmodule Thanks, -- BradReceived on Tue May 23 15:59:40 2006
This archive was generated by hypermail 2.1.8 : Tue May 23 2006 - 15:59:55 PDT