Skip to content
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

Rollup of 11 pull requests #81553

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
77a9e3e
combine: stop eagerly evaluating consts
lcnr Jan 24, 2021
a398994
Account for existing `_` field pattern when suggesting `..`
estebank Jan 27, 2021
063b427
Bump rustfmt version
Mark-Simulacrum Jan 9, 2021
ada714d
Optimize udiv_1e19() function
Kogia-sima Jan 28, 2021
d1727ed
Add lint for 2229 migrations
arora-aman Dec 28, 2020
2c651eb
Process mentioned upvars for analysis first pass after ExprUseVisitor
arora-aman Nov 21, 2020
36352d2
Migrations first pass
arora-aman Dec 15, 2020
d30a5bf
Tests for 2229 lint
arora-aman Dec 30, 2020
9ac023d
Mark the lint doc as compile_fail
arora-aman Jan 3, 2021
f106e18
PR fixup
arora-aman Jan 19, 2021
11abaa1
New migration
arora-aman Jan 26, 2021
b421cd5
Restrict precision of captures with `capture_disjoint_fields` set
arora-aman Dec 4, 2020
3488082
Compute mutability of closure captures
arora-aman Dec 2, 2020
1373f98
Test cases for handling mutable references
arora-aman Dec 13, 2020
0897db5
Test for restricting capture precision
arora-aman Dec 14, 2020
604cbdc
Fix unused 'mut' warning for capture's root variable
arora-aman Dec 16, 2020
c748f32
Fix incorrect use mut diagnostics
arora-aman Dec 13, 2020
ffd5327
Add fixme for precise path diagnostics
arora-aman Jan 12, 2021
fadf03e
Fix typos
arora-aman Jan 29, 2021
0f4bab2
Fixme for closure origin when reborrow is implemented
arora-aman Jan 29, 2021
56c2736
Replace predecessor with range in collections documentation
KamilaBorowska Jan 30, 2021
755be93
Rollup merge of #80092 - sexxi-goose:restrict_precision, r=nikomatsakis
m-ou-se Jan 30, 2021
16a4bb2
Rollup merge of #80629 - sexxi-goose:migrations_1, r=nikomatsakis
m-ou-se Jan 30, 2021
813739a
Rollup merge of #80843 - Mark-Simulacrum:fmt-bump, r=petrochenkov
m-ou-se Jan 30, 2021
1d117ab
Rollup merge of #81351 - lcnr:big-money-big-prices, r=oli-obk
m-ou-se Jan 30, 2021
ec066b3
Rollup merge of #81422 - estebank:dotdot_sugg, r=davidtwco
m-ou-se Jan 30, 2021
e3d9523
Rollup merge of #81484 - Kogia-sima:perf/optimize-udiv_1e19, r=nagisa
m-ou-se Jan 30, 2021
0330456
Rollup merge of #81550 - xfix:replace-mention-of-predecessor, r=jonas…
m-ou-se Jan 30, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Mark the lint doc as compile_fail
arora-aman committed Jan 29, 2021
commit 9ac023db3912690d79d723c98429db61c8c42212
2 changes: 1 addition & 1 deletion compiler/rustc_lint_defs/src/builtin.rs
Original file line number Diff line number Diff line change
@@ -3002,7 +3002,7 @@ declare_lint! {
///
/// ### Example
///
/// ```rust
/// ```rust,compile_fail
/// # #![deny(disjoint_capture_drop_reorder)]
/// # #![allow(unused)]
/// struct FancyInteger(i32);