about summary refs log tree commit diff
path: root/compiler/rustc_errors/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-02-25 18:34:02 +0000
committerbors <bors@rust-lang.org>2022-02-25 18:34:02 +0000
commitd981633ed6669c6f7b1cb46d1d1a7282e281ca8e (patch)
tree88b6f0555d902c40dd9ae95cd4a77ae4f703a947 /compiler/rustc_errors/src
parent6cbc6c35e4b0c948114619a1c883a75b731d32c5 (diff)
parent3c62f2f635c7379bcdcf64e4efa5ffe4ecb0ba6d (diff)
downloadrust-d981633ed6669c6f7b1cb46d1d1a7282e281ca8e.tar.gz
rust-d981633ed6669c6f7b1cb46d1d1a7282e281ca8e.zip
Auto merge of #94290 - Mark-Simulacrum:bump-bootstrap, r=pietroalbini
Bump bootstrap to 1.60

This bumps the bootstrap compiler to 1.60 and cleans up cfgs and Span's rustc_pass_by_value (enabled by the bootstrap bump).
Diffstat (limited to 'compiler/rustc_errors/src')
-rw-r--r--compiler/rustc_errors/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs
index 463308c27b2..fdfedffc529 100644
--- a/compiler/rustc_errors/src/lib.rs
+++ b/compiler/rustc_errors/src/lib.rs
@@ -8,9 +8,9 @@
 #![feature(if_let_guard)]
 #![feature(let_else)]
 #![feature(nll)]
-#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
 #![feature(adt_const_params)]
 #![allow(incomplete_features)]
+#![allow(rustc::potential_query_instability)]
 
 #[macro_use]
 extern crate rustc_macros;