Skip to content

Rustup #2842

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 27 commits into from
Apr 14, 2023
Merged

Rustup #2842

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
169115e
Stabilize IsTerminal
joshtriplett Apr 8, 2023
15bedd2
Auto merge of #108698 - IntQuant:issue-100717-infer-6, r=davidtwco
bors Apr 10, 2023
31b4e40
Auto merge of #109638 - NotStirred:suggest/non-derive, r=davidtwco
bors Apr 10, 2023
a236223
Auto merge of #109778 - petrochenkov:allkind, r=cjgillot
bors Apr 11, 2023
5d70664
Auto merge of #109850 - MU001999:master, r=estebank
bors Apr 11, 2023
d81b370
Auto merge of #110168 - saethlin:miri, r=RalfJung
bors Apr 11, 2023
aeeba2e
Auto merge of #109765 - petrochenkov:encodeless, r=cjgillot
bors Apr 11, 2023
ea2cfcc
Auto merge of #110092 - clubby789:builtin-macros-translatable, r=comp…
bors Apr 11, 2023
5e89fe4
Auto merge of #109895 - nikic:llvm-16-tests, r=cuviper
bors Apr 12, 2023
9881d01
Auto merge of #109935 - michaelwoerister:fix-feed-in-eval-always, r=c…
bors Apr 12, 2023
1b45f54
Auto merge of #109466 - davidlattimore:inline-arg-via-var-debug-info,…
bors Apr 13, 2023
acb61f9
Auto merge of #108283 - the8472:remove-splice-into-pipe, r=ChrisDenton
bors Apr 13, 2023
12dc1a4
Rollup merge of #110072 - joshtriplett:stabilize-is-terminal, r=Mark-…
matthiaskrgr Apr 13, 2023
9d31f4f
Rollup merge of #110195 - compiler-errors:issue-110052, r=aliemjay
matthiaskrgr Apr 13, 2023
a04e55c
Rollup merge of #110218 - nnethercote:rm-ToRegionVid, r=compiler-errors
matthiaskrgr Apr 13, 2023
e5efabf
Rollup merge of #110220 - lcnr:regionzz, r=compiler-errors
matthiaskrgr Apr 13, 2023
5a385da
Rollup merge of #110234 - marc0246:btree-insert-after-fix, r=cuviper
matthiaskrgr Apr 13, 2023
c336b70
Rollup merge of #110262 - justincredible:patch-1, r=ChrisDenton
matthiaskrgr Apr 13, 2023
68294f1
Auto merge of #110275 - matthiaskrgr:rollup-8ntb3o5, r=matthiaskrgr
bors Apr 13, 2023
9764ffa
Auto merge of #109989 - ids1024:m68k-asm, r=Amanieu
bors Apr 13, 2023
e536a1f
Auto merge of #110079 - fee1-dead-contrib:bump-futures, r=Mark-Simula…
bors Apr 13, 2023
f9d3299
Auto merge of #110160 - petrochenkov:notagain2, r=cjgillot
bors Apr 14, 2023
41d140f
Auto merge of #109875 - jyn514:no-fulldeps, r=compiler-errors
bors Apr 14, 2023
d864b8b
Auto merge of #105007 - dlaugt:solaris-fs-link, r=ChrisDenton
bors Apr 14, 2023
3246495
Preparing for merge from rustc
RalfJung Apr 14, 2023
9a71009
Merge from rustc
RalfJung Apr 14, 2023
d08d195
add test for recent unwind UB issue
RalfJung Apr 14, 2023
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 @@
d4be8efc6296bace5b1e165f1b34d3c6da76aa8e
71ef9ecbdedb67c32f074884f503f8e582855c2f
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#![feature(yeet_expr)]
#![feature(nonzero_ops)]
#![feature(local_key_cell_methods)]
#![feature(is_terminal)]
#![feature(round_ties_even)]
// Configure clippy and other lints
#![allow(
Expand Down
7 changes: 7 additions & 0 deletions tests/panic/oob_subslice.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// This once failed with "unwinding past a stack frame that does not allow unwinding",
// fixed by https://github.com/rust-lang/rust/issues/110233.

fn main() {
let x = [1, 2, 3, 4];
let _val = &x[..=4];
}
2 changes: 2 additions & 0 deletions tests/panic/oob_subslice.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
thread 'main' panicked at 'range end index 5 out of range for slice of length 4', $DIR/oob_subslice.rs:LL:CC
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
1 change: 0 additions & 1 deletion tests/pass/shims/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

#![feature(io_error_more)]
#![feature(io_error_uncategorized)]
#![feature(is_terminal)]

use std::collections::HashMap;
use std::ffi::{c_char, OsString};
Expand Down
2 changes: 0 additions & 2 deletions tests/pass/shims/io.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![feature(is_terminal)]

use std::io::IsTerminal;

fn main() {
Expand Down