Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
56ebfb1
Implement DoubleEndedIterator for iter::{StepBy, Peekable, Take}
timvermeulen Jun 2, 2019
3b15b16
Explaining the reason why validation is performed in to_str of path.rs
JasonShin Aug 1, 2019
1aa4a57
Update src/libstd/path.rs to shorten the explanation for .to_str vali…
JasonShin Aug 1, 2019
0d15845
fix UB in a test
RalfJung Aug 4, 2019
95f29aa
Revert "Rollup merge of #62696 - chocol4te:fix_#62194, r=estebank"
arielb1 Aug 4, 2019
4e51ef7
Test content, not value
RalfJung Aug 5, 2019
b5e35b1
remove special code path for unknown tokens
matklad Jul 30, 2019
58ac81a
add unknown token
matklad Jul 30, 2019
b3e8c8b
adapt rustdoc to infailable lexer
matklad Jul 30, 2019
ab3fb1e
Drop span argument from mk_list_item
Mark-Simulacrum Aug 4, 2019
24a491f
Drop explicit span argument from mk_name_value_item
Mark-Simulacrum Aug 4, 2019
8849149
Make mk_attr_id private to libsyntax
Mark-Simulacrum Aug 4, 2019
fbf93d4
Remove leftover AwaitOrigin
Mark-Simulacrum Aug 5, 2019
90b95cf
fix slice comparison
RalfJung Aug 5, 2019
288b4e9
Don't store &Span
Mark-Simulacrum Aug 5, 2019
1f01863
improve align_offset docs
RalfJung Aug 5, 2019
30910ee
Make qualify consts in_projection use PlaceRef
spastorino Aug 5, 2019
9058bf2
Make use of possibly uninitialized data a hard error
tmandry Aug 3, 2019
571e22d
Clarify align_to's requirements and obligations
shepmaster Aug 5, 2019
175eb9c
doc: fix broken sentence
tshepang Aug 6, 2019
ee48f82
Update README.md
Centril Aug 6, 2019
fe998db
Rollup merge of #61457 - timvermeulen:double_ended_iters, r=scottmcm
Centril Aug 6, 2019
61e270a
Rollup merge of #63017 - matklad:no-fatal, r=petrochenkov
Centril Aug 6, 2019
e988230
Rollup merge of #63184 - JasonShin:master, r=sfackler
Centril Aug 6, 2019
ab7155d
Rollup merge of #63230 - tmandry:disallow-possibly-uninitialized, r=C…
Centril Aug 6, 2019
046936a
Rollup merge of #63260 - RalfJung:ptr-test, r=matklad
Centril Aug 6, 2019
61da2f4
Rollup merge of #63264 - arielb1:revert-private-coherence-errors, r=e…
Centril Aug 6, 2019
b2603d6
Rollup merge of #63272 - Mark-Simulacrum:clean-attr, r=petrochenkov
Centril Aug 6, 2019
2301ecd
Rollup merge of #63285 - Mark-Simulacrum:rm-await-origin, r=Centril
Centril Aug 6, 2019
505d68e
Rollup merge of #63287 - Mark-Simulacrum:span-no-ref, r=Centril
Centril Aug 6, 2019
000d646
Rollup merge of #63293 - shepmaster:align-to-doc, r=RalfJung
Centril Aug 6, 2019
d7b49a8
Rollup merge of #63295 - RalfJung:align_offset, r=dtolnay
Centril Aug 6, 2019
5a3359d
Rollup merge of #63299 - spastorino:in-projection-use-ref, r=oli-obk
Centril Aug 6, 2019
5710a23
Rollup merge of #63312 - tshepang:doc-fix, r=Centril
Centril Aug 6, 2019
c27405f
Rollup merge of #63315 - rust-lang:fix-63313, r=alexreg
Centril Aug 6, 2019
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
Prev Previous commit
Next Next commit
Test content, not value
Co-Authored-By: Aleksey Kladov <[email protected]>
  • Loading branch information
RalfJung and matklad authored Aug 5, 2019
commit 4e51ef7ccd9729b1f9074a44ef49778a3c53c3d4
2 changes: 1 addition & 1 deletion src/libcore/tests/ptr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ fn test_as_mut() {
// Pointers to unsized types -- slices
let s: &mut [u8] = &mut [1, 2, 3];
let ms: *mut [u8] = s;
assert_eq!(ms.as_mut().unwrap() as *mut _, s as *mut _);
assert_eq!(ms.as_mut(), Some(&mut [1, 2, 3]));

let mz: *mut [u8] = &mut [];
assert_eq!(mz.as_mut(), Some(&mut [][..]));
Expand Down