fabianschuiki / moore

A hardware compiler based on LLHD and CIRCT
http://www.llhd.io
Apache License 2.0
243 stars 31 forks source link

Declare module names in a separate namespace #226

Open fabianschuiki opened 3 years ago

fabianschuiki commented 3 years ago

The following should be allowed:

module foo;
endmodule

module bar;
    foo foo();
    //  ^^^ should not trigger a name conflict
endmodule