forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not ICE in privacy when type inference fails.
- Loading branch information
Showing
3 changed files
with
34 additions
and
3 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
2 changes: 1 addition & 1 deletion
2
tests/crashes/122736.rs → ...ui/privacy/no-ice-on-inference-failure.rs
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
error: constant evaluation is taking a long time | ||
--> $DIR/no-ice-on-inference-failure.rs:5:9 | ||
| | ||
LL | / while n < 5 { | ||
LL | | | ||
LL | | x = &0; | ||
LL | | } | ||
| |_________^ | ||
| | ||
= note: this lint makes sure the compiler doesn't get stuck due to infinite loops in const eval. | ||
If your compilation actually takes a long time, you can safely allow the lint. | ||
help: the constant being evaluated | ||
--> $DIR/no-ice-on-inference-failure.rs:2:22 | ||
| | ||
LL | let array = [(); { | ||
| ______________________^ | ||
LL | | let mut x = &0; | ||
LL | | let mut n = 0; | ||
LL | | while n < 5 { | ||
... | | ||
LL | | 0 | ||
LL | | }]; | ||
| |_____^ | ||
= note: `#[deny(long_running_const_eval)]` on by default | ||
|
||
error: aborting due to 1 previous error | ||
|