Auto merge of #131767 - cuviper:bump-stage0, r=Mark-Simulacrum

Bump bootstrap compiler to 1.83.0-beta.1

https://forge.rust-lang.org/release/process.html#master-bootstrap-update-tuesday
This commit is contained in:
bors 2024-10-16 14:40:08 +00:00
commit bed75e7c21
58 changed files with 644 additions and 755 deletions

View file

@ -57,7 +57,7 @@ impl<T> Steal<T> {
///
/// This should not be used within rustc as it leaks information not tracked
/// by the query system, breaking incremental compilation.
#[cfg_attr(not(bootstrap), rustc_lint_untracked_query_information)]
#[rustc_lint_untracked_query_information]
pub fn is_stolen(&self) -> bool {
self.value.borrow().is_none()
}