Skip to content

Commit 5af2130

Browse files
committed
Auto merge of rust-lang#121327 - Nilstrieb:rollup-zxcwwwy, r=Nilstrieb
Rollup of 10 pull requests Successful merges: - rust-lang#120716 (Change leak check and suspicious auto trait lint warning messages) - rust-lang#121195 (unstable-book: Separate testing and production sanitizers) - rust-lang#121205 (Merge `CompilerError::CompilationFailed` and `CompilerError::ICE`.) - rust-lang#121233 (Move the extra directives for `Mode::CoverageRun` into `iter_header`) - rust-lang#121256 (Allow AST and HIR visitors to return `ControlFlow`) - rust-lang#121307 (Drive-by `DUMMY_SP` -> `Span` and fmt changes) - rust-lang#121308 (Add regression test for rust-lang#103369) - rust-lang#121310 (Remove an old hack for rustdoc) - rust-lang#121311 (Make `is_nonoverlapping` `#[inline]`) - rust-lang#121319 (return `ty::Error` when equating `ty::Error`) r? `@ghost` `@rustbot` modify labels: rollup
2 parents bcea3cb + 599768d commit 5af2130

File tree

69 files changed

+1290
-1524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1290
-1524
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)