Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02eb9a5

Browse files
committedDec 23, 2018
Auto merge of #57075 - Centril:rollup, r=Centril
Rollup of 10 pull requests Successful merges: - #56188 (enum type instead of variant suggestion unification ) - #56916 (Fix mutable references in `static mut`) - #56917 (Simplify MIR generation for logical operations) - #56953 (Mark tuple structs as live if their constructors are used) - #56964 (Remove `TokenStream::JointTree`.) - #56966 (Correct strings for raw pointer deref and array access suggestions) - #56999 (AST/HIR: Introduce `ExprKind::Err` for better error recovery in the front-end) - #57020 (Point to cause of `fn` expected return type) - #57032 (fix deprecation warnings in liballoc benches) - #57053 (Fix alignment for array indexing) Failed merges: r? @ghost
2 parents ddab10a + 35fa309 commit 02eb9a5

File tree

167 files changed

+1248
-585
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+1248
-585
lines changed
 

‎Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ dependencies = [
1818
"compiler_builtins 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
1919
"core 0.0.0",
2020
"rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
21+
"rand_xorshift 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2122
]
2223

2324
[[package]]

‎src/liballoc/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ compiler_builtins = { version = "0.1.0", features = ['rustc-dep-of-std'] }
1515

1616
[dev-dependencies]
1717
rand = "0.6"
18+
rand_xorshift = "0.1"
1819

1920
[[test]]
2021
name = "collectionstests"

0 commit comments

Comments
 (0)
Please sign in to comment.