### Example ```nim proc foo(_: int, _: float) = discard ``` ### Current Output ``` attempt to redefine: '_' ``` ### Expected Output No error because constructs named `_` are normally inaccessible and so can be defined in the same scope, like this: ```nim var _: int _: float ``` ### Additional Information ``` $ nim -v Nim Compiler Version 1.0.4 ```