-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the desugaring of
assert!
for better error output
In the desugaring of `assert!`, we now expand to a `match` expression instead of `if !cond {..}`. The span of incorrect conditions will point only at the expression, and not the whole `assert!` invocation. ``` error[E0308]: mismatched types --> $DIR/issue-14091.rs:2:13 | LL | assert!(1,1); | ^ expected `bool`, found integer ``` We no longer mention the expression needing to implement the `Not` trait. ``` error[E0308]: mismatched types --> $DIR/issue-14091-2.rs:15:13 | LL | assert!(x, x); | ^ expected `bool`, found `BytePos` ``` `assert!(val)` now desugars to: ```rust match val { true => {}, _ => $crate::panic::panic_2021!(), } ``` Fix #122159. We make some minor changes to some diagnostics to avoid span overlap on type mismatch or inverted "expected"/"found" on type errors. We remove some unnecessary parens from core, alloc and miri.
- Loading branch information
Showing
56 changed files
with
319 additions
and
247 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
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
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,15 +1,15 @@ | ||
#[test] | ||
fn seq_compare() { | ||
assert!(("hello".to_string() < "hellr".to_string())); | ||
assert!(("hello ".to_string() > "hello".to_string())); | ||
assert!(("hello".to_string() != "there".to_string())); | ||
assert!((vec![1, 2, 3, 4] > vec![1, 2, 3])); | ||
assert!((vec![1, 2, 3] < vec![1, 2, 3, 4])); | ||
assert!((vec![1, 2, 4, 4] > vec![1, 2, 3, 4])); | ||
assert!((vec![1, 2, 3, 4] < vec![1, 2, 4, 4])); | ||
assert!((vec![1, 2, 3] <= vec![1, 2, 3])); | ||
assert!((vec![1, 2, 3] <= vec![1, 2, 3, 3])); | ||
assert!((vec![1, 2, 3, 4] > vec![1, 2, 3])); | ||
assert!("hello".to_string() < "hellr".to_string()); | ||
assert!("hello ".to_string() > "hello".to_string()); | ||
assert!("hello".to_string() != "there".to_string()); | ||
assert!(vec![1, 2, 3, 4] > vec![1, 2, 3]); | ||
assert!(vec![1, 2, 3] < vec![1, 2, 3, 4]); | ||
assert!(vec![1, 2, 4, 4] > vec![1, 2, 3, 4]); | ||
assert!(vec![1, 2, 3, 4] < vec![1, 2, 4, 4]); | ||
assert!(vec![1, 2, 3] <= vec![1, 2, 3]); | ||
assert!(vec![1, 2, 3] <= vec![1, 2, 3, 3]); | ||
assert!(vec![1, 2, 3, 4] > vec![1, 2, 3]); | ||
assert_eq!(vec![1, 2, 3], vec![1, 2, 3]); | ||
assert!((vec![1, 2, 3] != vec![1, 1, 3])); | ||
assert!(vec![1, 2, 3] != vec![1, 1, 3]); | ||
} |
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
Oops, something went wrong.