GuillaumeGomez / rustc-tools

Some internal rustc tools made accessible
https://guillaumegomez.github.io/rustc-tools/
MIT License
42 stars 6 forks source link

examples/lint: Remove unused `Result::map` #17

Closed CohenArthur closed 11 months ago

CohenArthur commented 11 months ago

with_lints already returns a Result<(), _>, so mapping the Ok value to () does nothing.

GuillaumeGomez commented 11 months ago

Thanks!