-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The name pattern {_}
doesn't work as expected
#399
Comments
the rust name matcher doesn't actually handle inherent impl blocks at all at the moment 😅 |
Oh I see ^^ |
I can't distinguish impl blocks from trait impls because we allow |
What is the |
it's equivalent to |
The pattern
alloc::vec::{_}::set_len
is expected to matchalloc::vec::Vec<T, ...>::set_len
(when using the Rust name pattern matcher) but doesn't (note thatalloc::vec::_::set_len
does).The text was updated successfully, but these errors were encountered: