Skip to content

Commit 236a550

Browse files
committed
Auto merge of #121320 - saethlin:rollup-x1x4toc, r=saethlin
Rollup of 8 pull requests Successful merges: - #120718 (Add "algebraic" fast-math intrinsics, based on fast-math ops that cannot return poison) - #121195 (unstable-book: Separate testing and production sanitizers) - #121205 (Merge `CompilerError::CompilationFailed` and `CompilerError::ICE`.) - #121233 (Move the extra directives for `Mode::CoverageRun` into `iter_header`) - #121256 (Allow AST and HIR visitors to return `ControlFlow`) - #121307 (Drive-by `DUMMY_SP` -> `Span` and fmt changes) - #121310 (Remove an old hack for rustdoc) - #121311 (Make `is_nonoverlapping` `#[inline]`) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 0b9f6ad + 6544ba2 commit 236a550

File tree

34 files changed

+1304
-880
lines changed

34 files changed

+1304
-880
lines changed

compiler/rustc_ast/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
#![allow(internal_features)]
1313
#![feature(rustdoc_internals)]
1414
#![feature(associated_type_bounds)]
15+
#![feature(associated_type_defaults)]
1516
#![feature(box_patterns)]
1617
#![feature(if_let_guard)]
1718
#![feature(let_chains)]
1819
#![cfg_attr(bootstrap, feature(min_specialization))]
20+
#![feature(never_type)]
1921
#![feature(negative_impls)]
2022
#![feature(stmt_expr_attributes)]
2123

0 commit comments

Comments
 (0)