Yacin Tmimi
Yacin Tmimi
Thanks for the report! Confirming I can reproduce this with `rustfmt 1.5.1-nightly (2f3ddd9f 2022-06-27)`
A smaller reproducible example. No macro needed. **Input** ```rust struct Runtime { Council: pallet_collective:: } ``` **Output** ```rust struct Runtime { Council: pallet_collective, } ```
hmm okay on second thought I think we actually want to remove the `::` if we're not in a macro context, but inside the macro we don't want to remove...
Thanks for the report. I also appreciate you doing some digging to try and find related issues! I made a quick edit to add some trailing spaces to example 1,...
For what it's worth, I had a similar idea of removing the leading whitespace in #5392.
Seems like a networking issue. No worries, I just reran that job.
Thanks for submitting your first PR 🎉 Could you open a feature request issue where we can discuss the motivation for this change as well as the scope of the...
Thanks for the report! Confirming I can reproduce this using the current master.
@calebcartwright using the current master 38659ec6ad5f341cf8eb3139725bf695872c6de7 Here are some steps you can take to reproduce: 1) Confirm the commit hash: `git log -1 --pretty=format:"%h"`. I get 38659ec6 2) write the...
I believe the issue can be tracked down to the call to `filter()` when constructing the `files` iterator. We skip the file while constructing the iterator so we never actually...