Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5fe8490
Add match pattern diagnostics regression test
vandenheuvel Feb 8, 2021
dd9db23
Fix typos in BTreeSet::{first, last} docs
taiki-e Feb 13, 2021
a3e0795
Heat up the ICE-y error reporting
BoxyUwU Feb 13, 2021
ee9709f
Fixed minor typo in catch_unwind docs
Feb 13, 2021
1c3841e
Edit `rustc_arena::DropArena` docs
pierwill Feb 13, 2021
d1a541e
Add tests for Atomic*::fetch_{min,max}
bjorn3 Feb 14, 2021
ba72bc9
fix typo
TaKO8Ki Feb 14, 2021
c583860
Remove unnecessary `Option` in `default_doc`
jyn514 Feb 14, 2021
dee5424
Add missing env!-decl variant
lukaslueg Feb 14, 2021
1aa9651
Fix typo in link to CreateSymbolicLinkW documentation.
m-ou-se Feb 14, 2021
3d7fcff
Update library/core/src/macros/mod.rs
lukaslueg Feb 14, 2021
4613b37
Stabilize Arguments::as_str
sfackler Feb 14, 2021
63806cc
Remove redundant bool_to_option feature gate
est31 Feb 15, 2021
ec77574
Update link for extern prelude.
ehuss Feb 15, 2021
3f160c6
Rollup merge of #81897 - vandenheuvel:match_exhaustive_diagnostics_re…
JohnTitor Feb 15, 2021
cd4ac3b
Rollup merge of #82009 - BoxyUwU:idontknooow, r=varkor
JohnTitor Feb 15, 2021
4db87c9
Rollup merge of #82060 - taiki-e:typo, r=m-ou-se
JohnTitor Feb 15, 2021
bce87f1
Rollup merge of #82063 - NULLx76:fix-minor-typo, r=jonas-schievink
JohnTitor Feb 15, 2021
94f339b
Rollup merge of #82077 - pierwill:edit-droparena, r=lcnr
JohnTitor Feb 15, 2021
b96fe1f
Rollup merge of #82093 - bjorn3:more_atomic_tests, r=kennytm
JohnTitor Feb 15, 2021
2870c39
Rollup merge of #82096 - TaKO8Ki:fix-typo, r=GuillaumeGomez
JohnTitor Feb 15, 2021
d4b5de0
Rollup merge of #82106 - jyn514:cleanup-bootstrap, r=Mark-Simulacrum
JohnTitor Feb 15, 2021
3d4b4a6
Rollup merge of #82118 - lukaslueg:env_decl, r=m-ou-se
JohnTitor Feb 15, 2021
fd29595
Rollup merge of #82119 - m-ou-se:typo, r=dtolnay
JohnTitor Feb 15, 2021
4f1dbe8
Rollup merge of #82120 - sfackler:arguments-as-str, r=dtolnay
JohnTitor Feb 15, 2021
4a1e236
Rollup merge of #82129 - est31:master, r=jyn514
JohnTitor Feb 15, 2021
d010aaa
Rollup merge of #82133 - ehuss:extern-prelude-link, r=jyn514
JohnTitor Feb 15, 2021
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 library/std/src/panic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ impl<S: Stream> Stream for AssertUnwindSafe<S> {
/// aborting the process as well. This function *only* catches unwinding panics,
/// not those that abort the process.
///
/// Also note that unwinding into Rust code with a foreign exception (e.g. a
/// Also note that unwinding into Rust code with a foreign exception (e.g.
/// an exception thrown from C++ code) is undefined behavior.
///
/// # Examples
Expand Down