forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#120020 - oli-obk:long_const_eval_err_taint,…
… r=compiler-errors Gracefully handle missing typeck information if typeck errored fixes rust-lang#116893 I created some logs and the typeck of `fn main` is exactly the same, no matter whether the constant's body is what it is, or if it is replaced with `panic!()`. The latter will cause the ICE not to be emitted though. The reason for that is that we abort compilation if *errors* were emitted, but not if *lint errors* were emitted. This took me way too long to debug, and is another reason why I would have liked rust-lang/compiler-team#633
- Loading branch information
Showing
4 changed files
with
20 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
//! This test tests two things at once: | ||
//! 1. we error if a const evaluation hits the deny-by-default lint limit | ||
//! 2. we do not ICE on invalid follow-up code | ||
|
||
// compile-flags: -Z tiny-const-eval-limit | ||
|
||
fn main() { | ||
// Tests the Collatz conjecture with an incorrect base case (0 instead of 1). | ||
// The value of `n` will loop indefinitely (4 - 2 - 1 - 4). | ||
let _ = [(); { | ||
let s = [(); { | ||
let mut n = 113383; // #20 in https://oeis.org/A006884 | ||
while n != 0 { | ||
//~^ ERROR is taking a long time | ||
n = if n % 2 == 0 { n / 2 } else { 3 * n + 1 }; | ||
} | ||
n | ||
}]; | ||
|
||
s.nonexistent_method(); | ||
} |
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