Matthias Krüger
bc99a045cb
Rollup merge of #139624 - m-ou-se:unconst-format-args, r=jhpratt
...
Don't allow flattened format_args in const.
Fixes https://github.com/rust-lang/rust/issues/139136
Fixes https://github.com/rust-lang/rust/issues/139621
We allow `format_args!("a")` in const, but don't allow any format_args with arguments in const, such as `format_args!("{}", arg)`.
However, we accidentally allow `format_args!("hello {}", "world")` in const, as it gets flattened to `format_args!("hello world")`.
This also applies to panic in const.
This wasn't supposed to happen. I added protection against this in the format args flattening code, ~~but I accidentally marked a function as const that shouldn't have been const~~ but this was removed in https://github.com/rust-lang/rust/pull/135139 .
This is a breaking change. The crater found no breakage, however.
This breaks things like:
```rust
const _: () = if false { panic!("a {}", "a") };
```
and
```rust
const F: std::fmt::Arguments<'static> = format_args!("a {}", "a");
```
2025-04-30 17:27:57 +02:00
..
2025-04-20 11:34:56 +02:00
2025-03-14 19:50:03 +00:00
2025-04-03 11:08:55 +03:00
2025-04-08 23:06:31 +03:00
2025-04-19 01:10:26 -06:00
2025-04-30 10:44:24 +03:00
2025-04-28 23:29:16 +00:00
2025-04-30 10:44:24 +03:00
2025-04-08 23:06:31 +03:00
2025-04-08 23:06:31 +03:00
2025-04-30 10:44:24 +03:00
2025-04-28 23:29:16 +00:00
2025-04-18 05:16:29 +02:00
2025-04-17 06:25:15 +02:00
2025-04-08 21:54:34 -04:00
2025-04-19 18:42:24 +08:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-14 15:28:41 +08:00
2025-04-30 10:44:24 +03:00
2025-04-03 11:08:55 +03:00
2025-04-30 10:44:24 +03:00
2025-04-27 19:58:44 +00:00
2025-04-17 11:21:54 +00:00
2025-04-14 19:54:27 +00:00
2025-03-03 08:52:07 +01:00
2025-04-19 01:10:26 -06:00
2025-04-17 21:53:25 +02:00
2025-04-30 10:44:24 +03:00
2025-03-20 02:17:14 +00:00
2025-04-24 12:54:40 +08:00
2025-04-17 21:53:25 +02:00
2025-04-30 10:44:24 +03:00
2025-04-03 11:08:55 +03:00
2025-04-30 17:27:57 +02:00
2025-04-08 10:46:31 -07:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-03-04 00:21:02 +08:00
2025-04-30 10:44:24 +03:00
2025-04-01 16:07:23 +11:00
2025-04-14 21:26:41 -05:00
2025-04-17 06:25:15 +02:00
2025-03-25 17:33:09 +03:00
2025-04-10 09:56:37 +02:00
2025-04-21 16:16:38 +09:00
2025-03-14 19:50:03 +00:00
2025-04-18 15:57:29 +02:00
2025-04-30 12:09:10 +00:00
2025-03-30 01:32:21 +03:00
2025-04-30 10:44:24 +03:00
2025-04-17 04:52:34 +00:00
2025-04-17 19:45:28 +08:00
2025-04-18 15:57:29 +02:00
2025-04-30 10:44:24 +03:00
2025-04-08 23:06:31 +03:00
2025-04-08 23:06:31 +03:00
2025-03-08 20:44:57 +00:00
2025-04-08 23:06:31 +03:00
2025-04-20 11:36:28 +02:00
2025-04-08 23:06:31 +03:00
2025-04-30 10:44:24 +03:00
2025-03-25 17:33:09 +03:00
2025-04-30 10:44:24 +03:00
2025-03-14 19:50:03 +00:00
2025-04-09 20:23:09 +02:00
2025-04-30 10:44:24 +03:00
2025-03-07 17:55:08 +00:00
2025-04-16 19:26:26 -04:00
2025-04-30 10:44:24 +03:00
2025-03-14 19:50:03 +00:00
2025-04-30 10:44:24 +03:00
2025-04-08 23:06:31 +03:00
2025-04-13 21:48:53 +03:00
2025-04-30 10:44:24 +03:00
2025-04-13 01:22:59 +02:00
2025-04-27 19:58:44 +00:00
2025-03-25 17:33:09 +03:00
2025-04-30 10:44:24 +03:00
2025-02-28 22:29:52 +08:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-17 00:16:22 +02:00
2025-04-11 11:03:08 +10:00
2025-04-30 10:44:24 +03:00
2025-04-17 06:25:15 +02:00
2025-04-11 10:53:45 +00:00
2025-03-31 15:41:48 +03:00
2025-04-08 23:06:31 +03:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-03-14 19:50:03 +00:00
2025-03-11 20:26:10 -07:00
2025-04-30 10:44:24 +03:00
2025-04-03 11:08:55 +03:00
2025-04-08 23:06:31 +03:00
2025-04-05 11:44:38 -07:00
2025-04-03 11:08:55 +03:00
2025-04-03 11:08:55 +03:00
2025-04-16 14:48:20 +02:00
2025-04-08 23:06:31 +03:00
2025-04-24 12:54:40 +08:00
2025-03-25 17:33:09 +03:00
2025-04-03 11:08:55 +03:00
2025-04-30 12:09:10 +00:00
2025-04-08 23:06:31 +03:00
2025-03-04 00:21:02 +08:00
2025-04-10 09:56:37 +02:00
2025-04-03 11:08:55 +03:00
2025-04-13 21:48:53 +03:00
2025-04-24 11:59:20 +01:00
2025-03-11 12:05:02 +00:00
2025-04-10 09:56:37 +02:00
2025-04-03 21:41:58 +00:00
2025-04-11 10:53:45 +00:00
2025-04-08 23:06:31 +03:00
2025-04-17 11:21:54 +00:00
2025-04-10 12:52:08 +08:00
2025-04-25 01:41:25 +08:00
2025-04-28 17:22:11 +00:00
2025-03-17 01:59:37 -05:00
2025-03-07 20:59:45 +11:00
2025-04-14 21:26:41 -05:00
2025-04-30 12:09:10 +00:00
2025-04-03 11:08:55 +03:00
2025-04-30 10:44:24 +03:00
2025-04-30 12:09:10 +00:00
2025-04-25 12:16:40 +00:00
2025-04-16 08:57:15 +10:00
2025-04-30 10:44:24 +03:00
2025-04-13 21:48:53 +03:00
2025-04-17 19:45:28 +08:00
2025-04-25 20:50:57 +09:00
2025-04-17 19:45:28 +08:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-26 14:48:30 +09:00
2025-04-13 21:48:53 +03:00
2025-04-17 19:45:28 +08:00
2025-04-17 19:45:28 +08:00
2025-04-17 21:53:25 +02:00
2025-04-30 10:44:24 +03:00
2025-04-08 23:06:31 +03:00
2025-04-29 12:19:55 +02:00
2025-04-21 15:55:58 +00:00
2025-04-13 21:48:53 +03:00
2025-04-08 23:06:31 +03:00
2025-04-13 11:48:17 +00:00
2025-04-03 11:08:55 +03:00
2025-04-07 19:13:31 +03:00
2025-04-30 10:44:24 +03:00
2025-03-25 17:33:09 +03:00
2025-04-30 10:44:24 +03:00
2025-04-15 11:14:23 +02:00
2025-04-12 15:24:25 +08:00
2025-04-13 21:48:53 +03:00
2025-04-30 10:44:24 +03:00
2025-04-29 13:46:17 +10:00
2025-03-24 18:57:22 +00:00
2025-04-08 23:06:31 +03:00
2025-03-14 19:50:03 +00:00
2025-04-14 14:29:14 +08:00
2025-04-21 16:16:38 +09:00
2025-04-30 10:44:24 +03:00
2025-04-13 21:48:53 +03:00
2025-04-30 10:44:24 +03:00
2025-04-08 23:06:31 +03:00
2025-04-30 10:44:24 +03:00
2025-04-03 11:08:55 +03:00
2025-04-30 10:44:24 +03:00
2025-04-03 11:08:55 +03:00
2025-04-18 15:02:22 +02:00
2025-04-08 23:06:31 +03:00
2025-04-08 23:06:31 +03:00
2025-04-08 23:06:31 +03:00
2025-03-25 17:33:09 +03:00
2025-03-19 23:29:35 +01:00
2025-04-11 10:53:45 +00:00
2025-04-08 23:06:31 +03:00
2025-04-30 10:44:24 +03:00
2025-03-13 21:12:07 +00:00
2025-03-30 01:32:21 +03:00
2025-04-25 17:59:33 +00:00
2025-04-08 23:06:31 +03:00
2025-03-30 22:53:21 +00:00
2025-03-25 17:33:09 +03:00
2025-04-08 23:06:31 +03:00
2025-04-26 14:48:30 +09:00
2025-04-04 09:44:19 +02:00
2025-03-19 12:55:02 -04:00
2025-03-11 20:26:10 -07:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-03-25 17:33:09 +03:00
2025-03-26 19:40:27 +11:00
2025-04-19 18:42:23 +08:00
2025-04-13 21:48:53 +03:00
2025-04-28 21:40:29 +02:00
2025-03-27 14:11:11 +01:00
2025-04-04 12:37:38 +00:00
2025-04-03 11:08:55 +03:00
2025-04-08 05:54:57 +00:00
2025-04-30 12:09:10 +00:00
2025-04-25 12:55:50 -07:00
2025-04-25 19:07:41 +07:00
2025-04-03 11:08:55 +03:00
2025-04-10 09:56:37 +02:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-25 20:50:57 +09:00
2025-04-24 18:41:43 +00:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-08 23:06:31 +03:00
2025-04-08 23:06:31 +03:00
2025-03-14 19:50:03 +00:00
2025-04-13 21:48:53 +03:00
2025-04-29 13:46:17 +10:00
2025-03-22 11:41:42 +08:00
2025-04-30 10:44:24 +03:00
2025-04-08 23:06:31 +03:00
2025-02-28 16:32:06 +00:00
2025-04-08 23:06:31 +03:00
2025-04-10 09:56:37 +02:00
2025-04-08 23:06:31 +03:00
2025-04-03 21:41:58 +00:00
2025-04-30 10:44:24 +03:00
2025-03-01 22:02:46 +08:00
2025-04-03 11:08:55 +03:00
2025-04-03 11:08:55 +03:00
2025-03-14 15:53:42 +08:00
2025-04-04 12:37:38 +00:00
2025-04-04 12:37:38 +00:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-03 11:08:55 +03:00
2025-04-03 11:08:55 +03:00
2025-03-14 19:50:03 +00:00
2025-04-03 11:08:55 +03:00
2025-04-03 11:08:55 +03:00
2025-04-03 21:41:58 +00:00
2025-04-18 01:44:06 +00:00
2025-04-03 21:41:58 +00:00
2025-03-11 20:26:10 -07:00
2025-04-08 23:06:31 +03:00
2025-04-03 21:41:58 +00:00
2025-04-13 21:48:53 +03:00
2025-04-13 21:48:53 +03:00
2025-04-03 11:08:55 +03:00
2025-04-03 11:08:55 +03:00
2025-04-30 10:44:24 +03:00
2025-04-08 23:06:31 +03:00
2025-04-08 23:06:31 +03:00
2025-03-31 23:58:17 +02:00
2025-03-31 23:58:17 +02:00
2025-03-31 23:58:17 +02:00
2025-03-31 23:58:17 +02:00
2025-04-13 21:48:53 +03:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-06 21:41:47 +02:00
2025-04-30 10:44:24 +03:00
2025-04-30 10:44:24 +03:00
2025-04-04 16:32:18 +02:00
2025-04-04 16:32:18 +02:00
2025-04-24 22:14:23 +00:00
2025-04-03 11:08:55 +03:00
2025-04-03 11:08:55 +03:00
2025-03-04 00:21:02 +08:00
2025-03-04 00:21:02 +08:00
2025-03-10 01:38:20 -07:00