Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 10 pull requests #121327

Merged
merged 23 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e72e7e9
Merge `CompilerError::CompilationFailed` and `CompilerError::ICE`.
nnethercote Feb 16, 2024
488ffaa
Wrap `iter_header` callback arguments in a documentable struct
Zalathar Feb 17, 2024
c521d7f
Move the extra directives for `Mode::CoverageRun` into `iter_header`
Zalathar Feb 17, 2024
864cee3
Allow AST and HIR visitors to return `ControlFlow`
Jarcho Feb 18, 2024
eee9d2a
Change leak check lint message to behavior is likely to change in the…
spastorino Feb 6, 2024
b4a424f
Drive-by `DUMMY_SP` -> `Span` and fmt changes
estebank Feb 19, 2024
7fd7b47
regression test for #103369
kadiwa4 Feb 19, 2024
ac1754b
Remove an old hack for rustdoc
GrigorenkoPV Feb 19, 2024
0b59748
Make `is_nonoverlapping` `#[inline]`
Noratrieb Feb 19, 2024
3e5ad42
Separate testing and production sanitizers
Feb 16, 2024
086463b
Remove suspicious auto trait lint
spastorino Feb 19, 2024
4803f17
Inline do_orphan_check_impl
spastorino Feb 17, 2024
84baf2f
return ty::Error when equating ty::Error
compiler-errors Feb 19, 2024
5b8b435
Rollup merge of #120716 - spastorino:change-some-lint-msgs, r=lcnr
Noratrieb Feb 20, 2024
4c2af78
Rollup merge of #121195 - D0liphin:master, r=ehuss
Noratrieb Feb 20, 2024
328a5b7
Rollup merge of #121205 - nnethercote:fix-stable-mir-CompilerError, r…
Noratrieb Feb 20, 2024
4131f6e
Rollup merge of #121233 - Zalathar:extra-directives, r=oli-obk
Noratrieb Feb 20, 2024
46cab11
Rollup merge of #121256 - Jarcho:visitor2, r=oli-obk
Noratrieb Feb 20, 2024
ac030bc
Rollup merge of #121307 - estebank:drive-by, r=compiler-errors
Noratrieb Feb 20, 2024
930566f
Rollup merge of #121308 - kadiwa4:test_103369, r=TaKO8Ki
Noratrieb Feb 20, 2024
dcb7c69
Rollup merge of #121310 - GrigorenkoPV:doc-smallfix, r=Nilstrieb
Noratrieb Feb 20, 2024
9788b19
Rollup merge of #121311 - Nilstrieb:is-it-overlapping, r=saethlin
Noratrieb Feb 20, 2024
599768d
Rollup merge of #121319 - compiler-errors:err, r=oli-obk
Noratrieb Feb 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions compiler/rustc_ast/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@
#![allow(internal_features)]
#![feature(rustdoc_internals)]
#![feature(associated_type_bounds)]
#![feature(associated_type_defaults)]
#![feature(box_patterns)]
#![feature(if_let_guard)]
#![feature(let_chains)]
#![cfg_attr(bootstrap, feature(min_specialization))]
#![feature(never_type)]
#![feature(negative_impls)]
#![feature(stmt_expr_attributes)]

Expand Down
Loading
Loading