-
Notifications
You must be signed in to change notification settings - Fork 13.4k
run-make tests fail when configured for multiple targets #11094
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
part of #8058 |
visiting for triage The FIXME for this issue still exists in the |
Triage: echoing what @frewsxcv says, but also noting that rustbuild will eventually obviate this. |
Make's now gone, so closing. (rustbuild handles this I believe) |
There is a FIXME related to this issue, |
[`useless_vec`]: add more tests and don't lint inside of macros Closes rust-lang#11084. I realized that the fix I added in rust-lang#11081 itself also causes an error in a suggestion when inside of a macro. Example: ```rs macro_rules! x { () => { for _ in vec![1, 2] {} } } x!(); ``` Here it would suggest replacing `vec![1, 2]` with `[x!()]`, because that's what the source callsite is (reminder: it does this to get the correct span of `x!()` for code like `for _ in vec![x!()]`), but that's wrong when *inside* macros, so I decided to make it not lint if the whole loop construct is inside a macro to avoid this issue. changelog: [`useless_vec`]: add more tests and don't lint inside of macros r? `@Alexendoo` since these were your tests, I figured it makes most sense to assign you
Something about the use of
%
seems to make these rules not expand correctly, resulting inThe text was updated successfully, but these errors were encountered: