-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip dead code checks on items that failed typeck
- Loading branch information
Showing
3 changed files
with
16 additions
and
5 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
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