Skip to content

Rustup #2662

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

Merged
merged 25 commits into from
Nov 10, 2022
Merged

Rustup #2662

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2302ad0
stabilize `int_log`
Oct 26, 2022
aead630
Auto merge of #103691 - michaelwoerister:consistent-slice-and-str-cpp…
bors Nov 5, 2022
90b0099
Auto merge of #103831 - chenyukang:yukang/fix-103751-ice, r=nagisa
bors Nov 5, 2022
c5af5c4
Auto merge of #102458 - JohnTitor:stabilize-instruction-set, r=oli-obk
bors Nov 5, 2022
217160a
Auto merge of #103975 - oli-obk:tracing, r=jackh726
bors Nov 6, 2022
a1891bf
Auto merge of #102618 - aliemjay:simplify-closure-promote, r=compiler…
bors Nov 6, 2022
3a0fe1d
Auto merge of #103720 - crlf0710:most_translation_attr, r=compiler-er…
bors Nov 6, 2022
d2d5551
Auto merge of #103861 - compiler-errors:codegen-select-in-vtable-slot…
bors Nov 6, 2022
e692954
Auto merge of #103218 - CastilloDel:infer, r=jackh726
bors Nov 7, 2022
ab08243
Auto merge of #103569 - RalfJung:miri-test-macos, r=Mark-Simulacrum
bors Nov 7, 2022
f5acdb2
Auto merge of #103934 - notriddle:notriddle/backtrace-deps, r=Mark-Si…
bors Nov 7, 2022
0c25e48
Auto merge of #104013 - notriddle:notriddle/rustdoc-sizeof, r=Guillau…
bors Nov 8, 2022
f0a2007
Auto merge of #102565 - jyn514:refactor-build-manifest, r=Mark-Simula…
bors Nov 9, 2022
0a08bb0
Rollup merge of #103570 - lukas-code:stabilize-ilog, r=scottmcm
Dylan-DPC Nov 9, 2022
a405ed7
Rollup merge of #103694 - WaffleLapkin:mask_doc_example, r=scottmcm
Dylan-DPC Nov 9, 2022
f5b2abf
Rollup merge of #103919 - nnethercote:unescaping-cleanups, r=matklad
Dylan-DPC Nov 9, 2022
f06b6b6
Rollup merge of #103933 - nicholasbishop:bishop-uefi-tier-2, r=JohnTitor
Dylan-DPC Nov 9, 2022
b6e0a5d
Rollup merge of #103952 - ehuss:dont-intra-linkcheck-reference, r=Mar…
Dylan-DPC Nov 9, 2022
05580e9
Rollup merge of #104111 - yancyribbens:add-mutable-to-the-description…
Dylan-DPC Nov 9, 2022
0729c1b
Rollup merge of #104125 - ink-feather-org:const_cmp_tuples, r=fee1-dead
Dylan-DPC Nov 9, 2022
1bf321a
Auto merge of #104192 - Dylan-DPC:rollup-jjo1o80, r=Dylan-DPC
bors Nov 9, 2022
5e93178
Auto merge of #104131 - notriddle:notriddle/flate2, r=Mark-Simulacrum
bors Nov 9, 2022
62bd979
Auto merge of #101990 - clubby789:dont-machine-apply-placeholder-meth…
bors Nov 10, 2022
1ff5e2e
Auto merge of #103636 - chenyukang:yukang/fix-103587-sugg-if-let, r=j…
bors Nov 10, 2022
4b33088
Merge from rustc
RalfJung Nov 10, 2022
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: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
452cf4f7109f58433ac38be7d3da527408571054
11fa0850f03ae49fe1053a21bcdcf8a301668ad8
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#![feature(never_type)]
#![feature(try_blocks)]
#![feature(io_error_more)]
#![feature(int_log)]
#![feature(variant_count)]
#![feature(yeet_expr)]
#![feature(is_some_and)]
Expand Down
1 change: 0 additions & 1 deletion tests/pass/integer-ops.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//@compile-flags: -Coverflow-checks=off
#![feature(int_log)]
#![allow(arithmetic_overflow)]

pub fn main() {
Expand Down