Skip to content

Rollup of 10 pull requests #69555

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 32 commits into from
Feb 28, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
81e4027
Update RELEASES.md for 1.42.0
XAMPPRocky Feb 9, 2020
26fdcbb
Update RELEASES.md
XAMPPRocky Feb 9, 2020
7ab01b2
Update RELEASES.md
XAMPPRocky Feb 10, 2020
32daa2a
Update RELEASES.md
XAMPPRocky Feb 10, 2020
e7a344f
Update RELEASES.md
XAMPPRocky Feb 23, 2020
59261f0
Add some missing support for `NtIdent`
petrochenkov Feb 22, 2020
b2605c1
parser: `token` -> `normalized_token`, `nonnormalized_token` -> `token`
petrochenkov Feb 24, 2020
9b6e0e8
simplify check_pat_lit
Centril Feb 25, 2020
5da3a2f
enhance check_pat_lit with TopInfo
Centril Feb 25, 2020
e58496c
improve ParentHirIterator discoverability
Centril Feb 25, 2020
1d33717
improve or-pattern type consistency diagnostics
Centril Feb 25, 2020
e9f6bb7
check_pat_path: use pattern_cause
Centril Feb 25, 2020
b1de8f1
check_pat_tuple: use pattern_cause
Centril Feb 25, 2020
d234e13
check_pat_ref: use pattern_cause
Centril Feb 25, 2020
6672a04
instantiate_value_path: .impl_self_ty -> .type_of
Centril Feb 21, 2020
526280a
Merge branch 'master' into relnotes-1.42.0
XAMPPRocky Feb 26, 2020
7c84ba1
use char instead of &str for single char patterns
matthiaskrgr Feb 26, 2020
c1de0b1
Remove unneeded calls to format!()
dotdash Feb 27, 2020
13d42f4
error_derive_forbidden_on_non_adt: be more graceful
Centril Feb 27, 2020
4e0bea3
Stabilize `boxed_slice_try_from`
JohnTitor Feb 28, 2020
85b585d
late resolve, visit_fn: bail early if there's no body.
Centril Feb 28, 2020
ff9341a
remove redundant clones, references to operands, explicit boolean com…
matthiaskrgr Feb 28, 2020
bbf6eec
Rollup merge of #68989 - XAMPPRocky:relnotes-1.42.0, r=Mark-Simulacrum
Centril Feb 28, 2020
76fe449
Rollup merge of #69340 - Centril:self-ctor-normalize, r=nikomatsakis
Centril Feb 28, 2020
3828fa2
Rollup merge of #69384 - petrochenkov:nounnorm, r=Centril
Centril Feb 28, 2020
a245221
Rollup merge of #69452 - Centril:typeck-pat, r=estebank
Centril Feb 28, 2020
07d9ed2
Rollup merge of #69481 - matthiaskrgr:single_char, r=ecstatic-morse
Centril Feb 28, 2020
87cc521
Rollup merge of #69522 - Centril:fix-69341, r=petrochenkov
Centril Feb 28, 2020
e4cedc9
Rollup merge of #69538 - JohnTitor:boxed-slice-try-from, r=Centril
Centril Feb 28, 2020
b95945c
Rollup merge of #69539 - Centril:fix-69401, r=petrochenkov
Centril Feb 28, 2020
61b091b
Rollup merge of #69541 - dotdash:format, r=Mark-Simulacrum
Centril Feb 28, 2020
13e4c6c
Rollup merge of #69547 - matthiaskrgr:more_misc, r=Mark-Simulacrum
Centril Feb 28, 2020
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 src/liballoc/boxed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ impl From<Box<str>> for Box<[u8]> {
}
}

#[unstable(feature = "boxed_slice_try_from", issue = "none")]
#[stable(feature = "boxed_slice_try_from", since = "1.43.0")]
impl<T, const N: usize> TryFrom<Box<[T]>> for Box<[T; N]>
where
[T; N]: LengthAtMost32,
Expand Down
2 changes: 1 addition & 1 deletion src/liballoc/rc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1453,7 +1453,7 @@ impl<T> From<Vec<T>> for Rc<[T]> {
}
}

#[unstable(feature = "boxed_slice_try_from", issue = "none")]
#[stable(feature = "boxed_slice_try_from", since = "1.43.0")]
impl<T, const N: usize> TryFrom<Rc<[T]>> for Rc<[T; N]>
where
[T; N]: LengthAtMost32,
Expand Down
2 changes: 1 addition & 1 deletion src/liballoc/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2002,7 +2002,7 @@ impl<T> From<Vec<T>> for Arc<[T]> {
}
}

#[unstable(feature = "boxed_slice_try_from", issue = "none")]
#[stable(feature = "boxed_slice_try_from", since = "1.43.0")]
impl<T, const N: usize> TryFrom<Arc<[T]>> for Arc<[T; N]>
where
[T; N]: LengthAtMost32,
Expand Down