-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
const_let: --bless with --compare-mode=nll
- Loading branch information
Showing
4 changed files
with
74 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,14 @@ | ||
error[E0658]: let bindings in constants are unstable (see issue #48821) | ||
--> $DIR/issue-18118.rs:5:17 | ||
| | ||
LL | let p = 3; | ||
| ^ | ||
| | ||
= help: add #![feature(const_let)] to the crate attributes to enable | ||
|
||
error[E0658]: statements in constants are unstable (see issue #48821) | ||
--> $DIR/issue-18118.rs:5:17 | ||
| | ||
LL | let p = 3; | ||
| ^ | ||
| | ||
= help: add #![feature(const_let)] to the crate attributes to enable | ||
|
||
error[E0658]: let bindings in constants are unstable (see issue #48821) | ||
--> $DIR/issue-18118.rs:8:9 | ||
| | ||
LL | &p //~ ERROR `p` does not live long enough | ||
| ^^ | ||
| | ||
= help: add #![feature(const_let)] to the crate attributes to enable | ||
|
||
error[E0658]: let bindings in constants are unstable (see issue #48821) | ||
--> $DIR/issue-18118.rs:2:5 | ||
| | ||
LL | / const z: &'static isize = { | ||
LL | | //~^ ERROR let bindings in constants are unstable | ||
LL | | //~| ERROR statements in constants are unstable | ||
LL | | let p = 3; | ||
... | | ||
LL | | //~^ ERROR let bindings in constants are unstable | ||
LL | | }; | ||
| |______^ | ||
| | ||
= help: add #![feature(const_let)] to the crate attributes to enable | ||
|
||
error[E0658]: statements in constants are unstable (see issue #48821) | ||
--> $DIR/issue-18118.rs:2:5 | ||
| | ||
LL | / const z: &'static isize = { | ||
LL | | //~^ ERROR let bindings in constants are unstable | ||
LL | | //~| ERROR statements in constants are unstable | ||
LL | | let p = 3; | ||
... | | ||
LL | | //~^ ERROR let bindings in constants are unstable | ||
LL | | }; | ||
| |______^ | ||
| | ||
= help: add #![feature(const_let)] to the crate attributes to enable | ||
|
||
error[E0597]: `p` does not live long enough | ||
--> $DIR/issue-18118.rs:8:9 | ||
--> $DIR/issue-18118.rs:4:9 | ||
| | ||
LL | &p //~ ERROR `p` does not live long enough | ||
| ^^ | ||
| | | ||
| borrowed value does not live long enough | ||
| using this value as a constant requires that `p` is borrowed for `'static` | ||
LL | //~^ ERROR let bindings in constants are unstable | ||
LL | }; | ||
| - `p` dropped here while still borrowed | ||
|
||
error: aborting due to 6 previous errors | ||
error: aborting due to previous error | ||
|
||
Some errors occurred: E0597, E0658. | ||
For more information about an error, try `rustc --explain E0597`. | ||
For more information about this error, try `rustc --explain E0597`. |