diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2021-11-01 16:18:36 +0100 |
|---|---|---|
| committer | Josh Triplett <josh@joshtriplett.org> | 2021-11-15 10:14:29 +0100 |
| commit | 8c9bfaa5f3a1a0bd487d0a6908492d56923d72a8 (patch) | |
| tree | 9acca0bd1939b0868004a42dc5f98c98214be96c /compiler/rustc_errors/src | |
| parent | 89c3d84b75e7b6993c47a3252e52503e8877e6f9 (diff) | |
| download | rust-8c9bfaa5f3a1a0bd487d0a6908492d56923d72a8.tar.gz rust-8c9bfaa5f3a1a0bd487d0a6908492d56923d72a8.zip | |
Stabilize format_args_capture
Works as expected, and there are widespread reports of success with it, as well as interest in it.
Diffstat (limited to 'compiler/rustc_errors/src')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index 21a2eb771c8..bb3d3a415e7 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -6,7 +6,7 @@ #![feature(crate_visibility_modifier)] #![feature(backtrace)] #![feature(if_let_guard)] -#![feature(format_args_capture)] +#![cfg_attr(bootstrap, feature(format_args_capture))] #![feature(iter_zip)] #![feature(let_else)] #![feature(nll)] |
