Stuart Cook  
		
	
	
		1eeb8e8b15 
		
			
		
	 
	
	
	Rollup merge of  #122661  - estebank:assert-macro-span, r=petrochenkov  
		
			... 
			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`
```
Now `assert!(val)` desugars to:
```rust
match val {
    true => {},
    _ => $crate::panic::panic_2021!(),
}
```
Fix  #122159 . 
		
	 
 
		2025-08-15 16:16:29 +10:00 
	 
	
	
		  ..
	 
	
	
		
			
			
			
			
			
			2025-06-12 17:50:25 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-06 20:12:11 +00:00 
		 
	
		
			
			
			
			
			
			2025-08-14 21:48:42 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-08-12 16:30:48 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-05-25 22:47:21 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-26 18:09:47 +02:00 
		 
	
		
			
			
			
			
			
			2025-08-06 22:21:49 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-01 15:16:56 +05:00 
		 
	
		
			
			
			
			
			
			2025-07-01 15:16:56 +05:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-08-07 20:49:42 +10:00 
		 
	
		
			
			
			
			
			
			2025-07-23 13:48:04 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-16 01:44:02 -07:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-26 18:09:47 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-26 18:09:47 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-26 18:09:47 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-26 18:09:47 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-07-16 01:44:02 -07:00 
		 
	
		
			
			
			
			
			
			2025-06-26 18:09:47 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-09 16:37:11 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-14 08:33:51 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-16 08:02:47 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-16 08:02:47 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-21 14:23:20 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-21 14:23:20 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-09 16:37:11 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-12 17:50:25 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-26 13:46:45 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-26 13:46:45 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-17 17:58:10 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-18 07:47:08 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-17 17:58:10 +00:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-18 07:47:08 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-18 07:47:08 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-18 07:47:08 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-07-10 18:47:20 +05:00 
		 
	
		
			
			
			
			
			
			2025-07-10 18:47:20 +05:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-06 20:12:11 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-30 08:04:40 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-08-04 16:43:53 -04:00 
		 
	
		
			
			
			
			
			
			2025-08-04 16:43:53 -04:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-16 12:35:44 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-16 12:35:44 +00:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-26 18:09:47 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-21 12:49:45 +03:00 
		 
	
		
			
			
			
			
			
			2025-07-21 12:49:45 +03:00 
		 
	
		
			
			
			
			
			
			2025-07-21 12:49:45 +03:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-07-25 23:39:26 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-25 23:39:26 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-12 17:50:25 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-12 17:50:25 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-26 13:46:45 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-26 13:46:45 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-30 08:45:43 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-26 13:46:45 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-08 14:36:43 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-09 11:44:24 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-09 11:44:24 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-08-07 21:39:00 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-26 18:09:47 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-13 13:50:01 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-08-07 20:49:42 +10:00 
		 
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-11 17:57:50 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-13 23:55:06 +08:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-23 13:48:04 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-23 13:48:04 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-21 09:11:21 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-30 08:06:08 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-23 13:48:04 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-23 13:48:04 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-23 13:48:04 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-23 13:48:04 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-08-05 19:34:46 +05:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-25 15:36:59 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-25 15:36:59 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-07-09 20:20:07 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-09 20:20:07 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-13 09:20:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-13 09:20:48 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-18 10:20:43 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 14:39:35 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 14:39:35 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 14:39:35 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 14:39:35 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 14:39:35 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-17 22:35:54 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-07 22:09:37 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-17 18:06:26 +08:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-23 13:48:04 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-07 13:42:30 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-26 10:20:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-26 13:46:45 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-08 14:36:43 +00:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-02 15:37:15 +00:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 17:03:48 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 14:39:35 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-27 14:39:35 +02:00