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 21:28:49 +00:00 
		 
	
		
			
			
			
			
			
			2025-04-17 19:45:28 +08:00 
		 
	
		
			
			
			
			
			
			2025-04-17 19:45:28 +08:00 
		 
	
		
			
			
			
			
			
			2025-07-01 04:25:36 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-09 21:11:09 -04:00 
		 
	
		
			
			
			
			
			
			2025-07-28 17:35:09 +03:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-08-06 23:59:47 +00:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-08-12 16:30:48 +00:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-21 15:49:44 +11:00 
		 
	
		
			
			
			
			
			
			2025-06-02 14:22:14 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-02 14:22:14 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-03-14 19:50:03 +00:00 
		 
	
		
			
			
			
			
			
			2025-01-24 01:19:50 +00:00 
		 
	
		
			
			
			
			
			
			2025-01-24 01:19:50 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-08-01 23:58:15 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-08-10 16:18:01 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-10 16:18:01 -07:00 
		 
	
		
	
		
			
			
			
			
			
			2025-03-14 19:50:03 +00:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-19 16:13:20 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-19 16:13:20 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-04 17:02:37 +05:30 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-10 20:21:39 +00:00 
		 
	
		
			
			
			
			
			
			2025-04-10 09:56:37 +02:00 
		 
	
		
			
			
			
			
			
			2025-04-10 09:56:37 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-16 01:44:02 -07:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-04-04 13:24:26 +11:00 
		 
	
		
			
			
			
			
			
			2025-04-04 13:24:26 +11:00 
		 
	
		
			
			
			
			
			
			2025-04-08 12:06:42 +10:00 
		 
	
		
			
			
			
			
			
			2025-04-08 12:06:42 +10:00 
		 
	
		
			
			
			
			
			
			2025-08-09 16:27:20 +05:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-06-18 10:20:43 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-04 10:40:04 -04:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-10 20:21:39 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-04-16 11:10:10 +02:00 
		 
	
		
			
			
			
			
			
			2025-04-16 11:10:10 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-28 17:35:09 +03:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-05-28 09:35:10 +08:00 
		 
	
		
			
			
			
			
			
			2025-05-28 09:35:10 +08:00 
		 
	
		
			
			
			
			
			
			2025-04-17 19:45:28 +08:00 
		 
	
		
			
			
			
			
			
			2025-04-17 19:45:28 +08:00 
		 
	
		
			
			
			
			
			
			2025-03-25 17:33:09 +03:00 
		 
	
		
	
		
			
			
			
			
			
			2025-08-02 15:29:16 -04:00 
		 
	
		
			
			
			
			
			
			2025-08-02 15:29:16 -04:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-04-30 10:44:24 +03:00 
		 
	
		
			
			
			
			
			
			2025-04-30 10:44:24 +03:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-12 07:57:12 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-12 07:57:12 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-04-08 23:06:31 +03:00 
		 
	
		
			
			
			
			
			
			2025-04-08 23:06:31 +03:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-08-14 18:18:42 +02:00 
		 
	
		
			
			
			
			
			
			2025-08-14 18:18:42 +02:00 
		 
	
		
			
			
			
			
			
			2025-01-02 23:39:17 +00:00 
		 
	
		
			
			
			
			
			
			2025-01-02 23:39:17 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-08-13 17:45:40 +03:00 
		 
	
		
			
			
			
			
			
			2025-08-13 17:45:40 +03:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-04-08 23:06:31 +03:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-10 20:21:39 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-10 20:21:39 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-10 20:21:39 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-08-10 10:48:08 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-27 07:51:38 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-27 07:51:38 +00:00 
		 
	
		
			
			
			
			
			
			2025-04-30 10:44:24 +03:00 
		 
	
		
			
			
			
			
			
			2025-04-30 10:44:24 +03:00 
		 
	
		
			
			
			
			
			
			2025-07-23 09:14:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-07-23 09:14:12 -07:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-01-24 01:19:50 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-04-02 16:07:02 +11:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-04-03 21:41:58 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-02-14 00:44:10 -08:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-24 11:07:16 +00:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-07-23 09:14:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-07-23 09:14:12 -07:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-08-10 11:54:15 -04:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-10 18:47:20 +05:00 
		 
	
		
			
			
			
			
			
			2025-07-10 18:47:20 +05:00 
		 
	
		
			
			
			
			
			
			2025-08-09 16:27:20 +05:00 
		 
	
		
			
			
			
			
			
			2025-08-09 16:27:20 +05:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-07-23 09:14:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-07-23 09:14:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-07-23 09:14:12 -07:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-04-03 21:41:58 +00:00 
		 
	
		
			
			
			
			
			
			2025-08-01 23:58:15 +00:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-02-21 15:49:46 +11:00 
		 
	
		
			
			
			
			
			
			2025-02-21 15:49:46 +11:00 
		 
	
		
	
		
			
			
			
			
			
			2025-07-24 17:01:44 -04:00 
		 
	
		
			
			
			
			
			
			2025-08-10 11:54:15 -04:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-24 04:37:36 -04:00 
		 
	
		
			
			
			
			
			
			2025-06-24 04:37:36 -04:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-24 04:37:36 -04:00 
		 
	
		
			
			
			
			
			
			2025-06-24 04:37:36 -04:00 
		 
	
		
			
			
			
			
			
			2025-06-24 04:37:36 -04:00 
		 
	
		
			
			
			
			
			
			2025-06-24 04:37:36 -04:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-16 01:44:02 -07:00 
		 
	
		
			
			
			
			
			
			2025-04-03 21:41:58 +00:00 
		 
	
		
			
			
			
			
			
			2025-08-01 23:58:15 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-03-03 23:53:42 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-05 03:46:08 +05:00 
		 
	
		
			
			
			
			
			
			2025-07-05 03:46:08 +05:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-03 13:35:31 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-24 23:32:09 +08:00 
		 
	
		
			
			
			
			
			
			2025-06-24 23:32:09 +08:00 
		 
	
		
	
		
			
			
			
			
			
			2025-08-08 11:01:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-12 09:24:45 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-12 09:24:45 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-08 11:01:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-08 11:01:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-08 11:01:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-08 11:01:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-08 11:01:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-08 11:01:12 -07:00 
		 
	
		
			
			
			
			
			
			2025-08-08 11:01:12 -07:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-27 07:51:38 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-30 08:06:08 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-03-07 14:51:07 +11:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-07-23 13:33:23 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-07-23 13:33:23 +02:00 
		 
	
		
			
			
			
			
			
			2025-08-11 17:02:32 +00:00 
		 
	
		
			
			
			
			
			
			2025-07-23 13:33:23 +02:00 
		 
	
		
			
			
			
			
			
			2025-08-11 17:02:32 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-10 20:21:39 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-04-03 21:41:58 +00:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-02-04 17:02:37 +05:30 
		 
	
		
			
			
			
			
			
			2025-02-04 17:02:37 +05:30 
		 
	
		
			
			
			
			
			
			2025-06-24 11:07:16 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-24 11:07:16 +00:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-01-24 01:19:50 +00:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-12 21:28:49 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-12 21:28:49 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-12 21:28:49 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-12 21:28:49 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-12 21:28:49 +00:00 
		 
	
		
			
			
			
			
			
			2025-06-12 21:28:49 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-26 15:20:42 -07:00 
		 
	
		
			
			
			
			
			
			2025-06-22 17:08:54 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-22 17:08:54 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-05-24 23:31:07 +02:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-25 23:58:57 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-11 17:49:03 +05:00 
		 
	
		
	
		
			
			
			
			
			
			2025-05-28 09:35:10 +08:00 
		 
	
		
			
			
			
			
			
			2025-05-28 09:35:10 +08:00 
		 
	
		
			
			
			
			
			
			2025-04-25 20:50:57 +09:00 
		 
	
		
			
			
			
			
			
			2025-04-25 20:50:57 +09:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-05-03 17:22:52 +02:00 
		 
	
		
			
			
			
			
			
			2025-05-03 17:22:52 +02:00 
		 
	
		
			
			
			
			
			
			2025-07-16 01:44:02 -07:00 
		 
	
		
	
		
			
			
			
			
			
			2025-04-02 06:20:35 +11:00 
		 
	
		
			
			
			
			
			
			2025-04-02 06:20:35 +11:00 
		 
	
		
	
		
			
			
			
			
			
			2025-04-03 11:08:55 +03:00 
		 
	
		
			
			
			
			
			
			2025-04-03 11:08:55 +03:00 
		 
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-03 13:35:31 +02:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-08-10 11:54:15 -04:00 
		 
	
		
			
			
			
			
			
			2025-08-10 11:54:15 -04:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-02-10 20:21:39 +00:00 
		 
	
		
	
		
			
			
			
			
			
			2025-04-11 15:30:00 +08:00 
		 
	
		
			
			
			
			
			
			2025-04-11 15:30:00 +08:00 
		 
	
		
			
			
			
			
			
			2025-04-22 15:08:32 +10:00 
		 
	
		
			
			
			
			
			
			2025-04-22 15:08:32 +10:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-06-04 15:07:47 +02:00 
		 
	
		
			
			
			
			
			
			2025-06-04 15:07:47 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-03-07 17:55:08 +00:00 
		 
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-03-11 09:46:34 -07:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-30 07:49:20 -05:00 
		 
	
		
			
			
			
			
			
			2025-04-02 16:16:51 +11:00 
		 
	
		
			
			
			
			
			
			2025-04-02 16:16:51 +11:00 
		 
	
		
	
		
			
			
			
			
			
			2025-02-06 22:28:44 +00:00 
		 
	
		
			
			
			
			
			
			2025-02-28 08:36:12 +11:00 
		 
	
		
			
			
			
			
			
			2025-04-29 13:46:17 +10:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-07-25 23:46:28 +02:00 
		 
	
		
	
		
			
			
			
			
			
			2025-06-03 11:45:58 +02:00 
		 
	
		
	
		
	
		
	
		
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-03-19 14:12:47 +01:00 
		 
	
		
			
			
			
			
			
			2025-03-19 14:12:47 +01:00 
		 
	
		
			
			
			
			
			
			2025-04-03 11:08:55 +03:00 
		 
	
		
			
			
			
			
			
			2025-04-03 11:08:55 +03:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-04-03 11:08:55 +03:00 
		 
	
		
			
			
			
			
			
			2025-04-03 11:08:55 +03:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
			
			
			
			
			
			2025-01-23 20:51:29 +08:00 
		 
	
		
	
		
	
		
			
			
			
			
			
			2025-01-03 12:01:31 +01:00 
		 
	
		
			
			
			
			
			
			2025-01-03 12:01:31 +01:00