-
Notifications
You must be signed in to change notification settings - Fork 898
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
Prune stale issues #4246
Prune stale issues #4246
Conversation
Adds regression tests for the following issues which seem to be fixed on master: Closes rust-lang#1762 Closes rust-lang#2388 Closes rust-lang#2672 Closes rust-lang#2755 Closes rust-lang#2947 Closes rust-lang#2978 Closes rust-lang#3148 Closes rust-lang#3206 @topecongiro @calebcartwright appologies for the large number of issues in this commit; if you prefer I can split it up into 2+.
No worries @ayazhafiz, for now this is fine as one PR |
_ => false, | ||
}) | ||
.collect(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we also include the snippet from the OP in the referenced iss
let a = b.iter()
.map(|m| {
m.hi()
});
averylongname_asdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdsffffffffffffffffffffffffffffffffffffffffffffffff: i32, | ||
) { | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we include the other snippets posted in #2672 (comment) on that thread?
Yeah I'll add them in a couple hours
…On Mon, Jun 8, 2020 at 5:54 PM Caleb Cartwright ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In tests/target/issue-2672.rs
<#4246 (comment)>:
> + fn test(
+ shortname: i32,
+ averylongname_asdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdsffffffffffffffffffffffffffffffffffffffffffffffff: i32,
+ ) {
+ }
+
+ let averylongname_asdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff =
+ 0;
+}
+
+mod asdf {
+ fn test(
+ averylongname_asdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdsffffffffffffffffffffffffffffffffffffffffffffffff: i32,
+ ) {
+ }
+}
Could we include the other snippets posted in #2672 (comment)
<#2672 (comment)>
on that thread?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#4246 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE6GL6QDBEINUSTRPN4WQR3RVWB4DANCNFSM4NY42ABA>
.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with the minor requested additions included
Adds regression tests for the following issues which seem to be fixed on
master:
Closes #1762
Closes #2388
Closes #2672
Closes #2755
Closes #2947
Closes #2978
Closes #3148
Closes #3206
@topecongiro @calebcartwright appologies for the large number of issues
in this commit; if you prefer I can split it up into 2+.