Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 941343e

Browse files
committedJan 31, 2021
Auto merge of #81596 - jonas-schievink:rollup-utk14gr, r=jonas-schievink
Rollup of 11 pull requests Successful merges: - #80092 (2229: Fix issues with move closures and mutability) - #80404 (Remove const_in_array_repeat) - #81255 (Don't link with --export-dynamic on wasm32-wasi) - #81480 (Add suggestion for nested fields) - #81549 (Misc ip documentation fixes) - #81566 (Add a test for #71202) - #81568 (Fix an old FIXME in redundant paren lint) - #81571 (Fix typo in E0759) - #81572 (Edit multiple error code Markdown files) - #81589 (Fix small typo in string.rs) - #81590 (Stabilize int_bits_const) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 0e63af5 + 9165676 commit 941343e

File tree

90 files changed

+1599
-326
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+1599
-326
lines changed
 

‎compiler/rustc_data_structures/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#![feature(unboxed_closures)]
1414
#![feature(generator_trait)]
1515
#![feature(fn_traits)]
16-
#![feature(int_bits_const)]
1716
#![feature(min_specialization)]
1817
#![feature(auto_traits)]
1918
#![feature(nll)]

‎compiler/rustc_error_codes/src/error_codes/E0013.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ static X: i32 = 42;
88
const Y: i32 = X;
99
```
1010

11-
In this example, `Y` cannot refer to `X` here. To fix this, the value can be
11+
In this example, `Y` cannot refer to `X`. To fix this, the value can be
1212
extracted as a const and then used:
1313

1414
```

0 commit comments

Comments
 (0)
Please sign in to comment.