8000 Rollup of 14 pull requests by kennytm · Pull Request #52088 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 14 pull requests #52088

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 31 commits into from
Jul 6, 2018
Merged
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4c6385d
Fix variant background color on hover in search results
GuillaumeGomez Jun 25, 2018
c4f6f90
Update LLVM to bring in a wasm codegen fix
alexcrichton Jul 2, 2018
1eeb5dc
Deduplicate error reports for statics
oli-obk Jul 3, 2018
65ff414
Allow the linker to choose the LTO-plugin (which is useful when using…
michaelwoerister Jul 3, 2018
dd069ea
rust: add initial changes to support powerpc64le musl
mksully22 Jun 18, 2018
6f223cf
Any docs preposition change
bowbahdoe Jul 3, 2018
f96c246
Strenghten synchronization in `Arc::is_unique`
RalfJung Jul 3, 2018
ecaa7bc
Update outdated comment: ByVal -> Scalar.
zachwolfe Jul 3, 2018
1dae60e
Include VS 2017 in error message.
crlf0710 Jul 4, 2018
30063ae
Shorten the line
crlf0710 Jul 4, 2018
6556c84
Add a link to the rustc docs
mark-i-m Jul 4, 2018
0ce0177
Add a punch card to weird expressions test
LunaBorowska Jul 5, 2018
82a1328
Vertical list of tools to check
oli-obk Jul 5, 2018
f1e3a5a
Only display difference of features, not all features
oli-obk Jul 5, 2018
f352e98
Address review comments
oli-obk Jul 5, 2018
185fb7b
Rollup merge of #51619 - mksully22:ppc64le_rust, r=alexcrichton
kennytm Jul 5, 2018
6650d7f
Rollup merge of #51793 - GuillaumeGomez:search-result-hover, r=QuietM…
kennytm Jul 5, 2018
1568b5e
Rollup merge of #52005 - alexcrichton:update-llvm-for-wasm, r=kennytm
kennytm Jul 5, 2018
a4846ae
Rollup merge of #52016 - oli-obk:dedup_static_errors, r=estebank
kennytm Jul 5, 2018
ffc453a
Rollup merge of #52019 - michaelwoerister:cross-lto-auto-plugin, r=al…
kennytm Jul 5, 2018
7ce7bf0
Rollup merge of #52030 - bowbahdoe:patch-1, r=alexcrichton
kennytm Jul 5, 2018
b87b22e
Rollup merge of #52031 - RalfJung:arc, r=sfackler
kennytm Jul 5, 2018
6d35505
Rollup merge of #52033 - zachrwolfe:outdated_value_comment, r=oli-obk
kennytm Jul 5, 2018
fa7f7ac
Fix typo in cell.rs
d-e-s-o May 20, 2018
23fbfb5
rustc: Update tracking issue for wasm_import_module
alexcrichton Jul 6, 2018
596d1a7
Rollup merge of #52073 - xfix:patch-7, r=oli-obk
kennytm Jul 5, 2018
f1a36fc
Rollup merge of #52080 - oli-obk:dep_dedup_diagnostics, r=kennytm
kennytm Jul 5, 2018
3c21349
Rollup merge of #52055 - crlf0710:patch-3, r=Mark-Simulacrum
kennytm Jul 6, 2018
20e32ee
Rollup merge of #52063 - mark-i-m:docs_link, r=kennytm
kennytm Jul 6, 2018
1a8011f
Rollup merge of #52093 - alexcrichton:update-issue, r=kennytm
kennytm Jul 6, 2018
e6ddbab
Rollup merge of #52096 - d-e-s-o:fix-typo, r=sfackler
kennytm Jul 6, 2018
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
13 changes: 13 additions & 0 deletions src/test/run-pass/weird-exprs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

// compile-flags: -Z borrowck=compare

#![recursion_limit = "128"]

use std::cell::Cell;
use std::mem::swap;

Expand Down Expand Up @@ -121,6 +123,16 @@ fn special_characters() {
assert!(!val);
}

fn punch_card() -> impl std::fmt::Debug {
..=..=.. .. .. .. .. .. .. .. .. .. .. ..=.. ..
..=.. ..=.. .. .. .. .. .. .. .. .. ..=..=..=..
..=.. ..=.. ..=.. ..=.. .. ..=..=.. .. ..=.. ..
..=..=.. .. ..=.. ..=.. ..=.. .. .. .. ..=.. ..
..=.. ..=.. ..=.. ..=.. .. ..=.. .. .. ..=.. ..
..=.. ..=.. ..=.. ..=.. .. .. ..=.. .. ..=.. ..
..=.. ..=.. .. ..=..=.. ..=..=.. .. .. ..=.. ..
}

pub fn main() {
strange();
funny();
Expand All @@ -135,4 +147,5 @@ pub fn main() {
fishy();
union();
special_characters();
punch_card();
}
0