Anton

Results 74 comments of Anton

Note that the feature is [quite likely to be stabilized](https://github.com/rust-lang/rust/pull/94927) in Rust 1.62, which is less than 3 months away.

The feature is still not stable, though. This means that at best it will land in 1.63, maybe later. So there are still several months to implement it.

I don't observe the problem you mentioned. I have created a new project, added the dependency as above, and added `mod realword;` to `main.rs`. The contents of `realworld` have some...

The macros in my example project took a while to expand, but I didn't have any issues once they have finished expanding. However, the files I edited didn't have any...

Could you provide a complete project example? I really don't feel like typing "E0DAwhatever" by hand.

I have opened your project, and was still unable to reproduce your errors. Everything works as expected for me. I can add implementations of trait methods, I can rename parameters,...

Hm, this is an explicit check in the IDE, and is part of the test suite. Was it at some point rejected by Rust and added as valid syntax later?

Indeed, leading `|` in nested or-patterns was allowed [in 2021](https://github.com/rust-lang/rust/pull/81869) and included in the final stabilization of or-patterns.

`quote!` is pretty much impossible to format, not unless we hardcode it in the plugin. The issue is that doesn't actually contain Rust code. If you look at its definition,...