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

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3db6d1c
For issue 53957: revise unit tests to focus on underlying bug of 23076.
pnkfelix Mar 20, 2020
13dd9af
ast: Compress `AttrId` from `usize` to `u32`
petrochenkov Mar 20, 2020
1d004bd
Fix deprecated Error.description() usage in docs
intgr Mar 21, 2020
2fa550b
Fix ICE caused by truncating a negative ZST enum discriminant
wesleywiser Mar 19, 2020
96bbd1c
Rename `cast_from_int` to `cast_from_int_like`
wesleywiser Mar 20, 2020
14e0aad
symbol_names: treat ReifyShim like VtableShim.
eddyb Mar 14, 2020
a39e964
Remove CARGO_BUILD_TARGET from bootstrap.py
tesuji Mar 21, 2020
97aa270
Add explanation message for E0224
Mar 21, 2020
0b307f7
Tweak wording for std::io::Read::read function
adrian5 Mar 21, 2020
e391d77
Add a test for out-of-line module passed through a proc macro
petrochenkov Mar 21, 2020
0aa15d0
Allow `hir().find` to return `None`
Zoxc Mar 16, 2020
834ed36
Rollup merge of #70003 - eddyb:symbol-mangling-reify-shims, r=nikomat…
Dylan-DPC Mar 21, 2020
ce0af8a
Rollup merge of #70051 - Zoxc:opt-find, r=eddyb
Dylan-DPC Mar 21, 2020
ecf3ef5
Rollup merge of #70126 - wesleywiser:fix_miri_ice_neg_zst_enum_discr,…
Dylan-DPC Mar 21, 2020
a3bdfc4
Rollup merge of #70197 - pnkfelix:issue-53957-revise-test-of-23076, r…
Dylan-DPC Mar 21, 2020
8e90533
Rollup merge of #70215 - petrochenkov:attrid, r=Centril
Dylan-DPC Mar 21, 2020
36d6e94
Rollup merge of #70218 - intgr:fix-deprecated-method-in-docs, r=jonas…
Dylan-DPC Mar 21, 2020
6e9720d
Rollup merge of #70228 - lzutao:patch-1, r=Mark-Simulacrum
Dylan-DPC Mar 21, 2020
4b5ca6e
Rollup merge of #70231 - aDotInTheVoid:E0224, r=Dylan-DPC
Dylan-DPC Mar 21, 2020
39c5222
Rollup merge of #70232 - adrian5:patch-1, r=Dylan-DPC
Dylan-DPC Mar 21, 2020
17e6ed1
Rollup merge of #70238 - petrochenkov:procmod, r=Centril
Dylan-DPC Mar 21, 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/libstd/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pub trait Error: Debug + Display {
/// fn main() {
/// match get_super_error() {
/// Err(e) => {
/// println!("Error: {}", e.description());
/// println!("Error: {}", e);
/// println!("Caused by: {}", e.source().unwrap());
/// }
/// _ => println!("No error"),
Expand Down