10000 Rollup of 7 pull requests by Mark-Simulacrum · Pull Request #65109 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 7 pull requests #65109

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

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9fbb2a9
Fix missing calls to drop on unwind with lto=fat; issue 64655.
pnkfelix Oct 2, 2019
a371972
Regression tests for issue 64655.
pnkfelix Oct 2, 2019
3adcc3e
fix typo
pnkfelix Oct 2, 2019
e7e6dec
Apply suggestions from code review
pnkfelix Oct 3, 2019
5e7e8cd
Update attributes.rs
pnkfelix Oct 3, 2019
71e5f78
Update issue-64655-extern-rust-must-allow-unwind.rs
pnkfelix Oct 3, 2019
1222cc9
permit asyncawait-ondeck to be added by anyone
nikomatsakis Oct 3, 2019
1fcbd90
Update triagebot.toml
nikomatsakis Oct 3, 2019
ed60cf2
When encountering chained operators use heuristics to recover from ba…
estebank Sep 30, 2019
6c9f298
review comments
estebank Sep 30, 2019
d7dceaa
Account for missing turbofish in paths too
estebank Sep 30, 2019
d27683a
Prove bad turbofish parser recovery in test
estebank Sep 30, 2019
dfdc369
review comments
estebank Oct 1, 2019
f1499a8
review comments
estebank Oct 1, 2019
02f57f8
review comments
estebank Oct 3, 2019
76456e7
review comments
estebank Oct 4, 2019
d896088
Upgrade librustc_macros dependencies
mati865 Oct 4, 2019
2d87bac
replace GeneratorSubsts with SubstsRef
csmoe Oct 3, 2019
fa7a87b
generate GeneratorSubsts from SubstsRef
csmoe Oct 3, 2019
774ea80
replace GeneratorSubsts inside related types
csmoe Oct 3, 2019
ef9fe10
remove GeneratorSubsts visitors
csmoe Oct 3, 2019
afc0bb9
clean up GeneratorSubsts
csmoe Oct 3, 2019
e9009c8
[const-prop] Fix ICE when trying to eval polymorphic promoted MIR
wesleywiser Oct 3, 2019
08ec3fe
dont run these tests on targets that default to panic=abort.
pnkfelix Oct 4, 2019
91a096a
move middle::liveness to rustc_passes
Mark-Simulacrum Oct 4, 2019
bb70782
middle::dead -> rustc_passes
Mark-Simulacrum Oct 4, 2019
82bfd8e
middle::entry -> rustc_passes
Mark-Simulacrum Oct 4, 2019
7c3f65b
middle::intrinsicck -> rustc_passes
Mark-Simulacrum Oct 4, 2019
c4ec53f
Rollup merge of #64909 - estebank:turbofish-reloaded, r=Centril
Mark-Simulacrum Oct 4, 2019
2889139
Rollup merge of #65020 - pnkfelix:targetted-fix-for-always-marking-ru…
Mark-Simulacrum Oct 4, 2019
b7c3e07
Rollup merge of #65064 - rust-lang:permit-asyncawait-ondeck-by-anyone…
Mark-Simulacrum Oct 4, 2019
dc87b27
Rollup merge of #65066 - wesleywiser:fix_const_prop_ice_on_polymorphi…
Mark-Simulacrum Oct 4, 2019
aa98a2b
Rollup merge of #65100 - csmoe:generator, r=nikomatsakis
Mark-Simulacrum Oct 4, 2019
18f62d7
Rollup merge of #65101 - mati865:rustc_macro-deps, r=nikomatsakis
Mark-Simulacrum Oct 4, 2019
4c094e1
Rollup merge of #65105 - Mark-Simulacrum:split-librustc, r=nikomatsakis
Mark-Simulacrum Oct 4, 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
Prove bad turbofish parser recovery in test
  • Loading branch information
estebank committed Oct 3, 2019
commit d27683a39f5924205d73e0015b8c25c97aadaa63
10 changes: 1 addition & 9 deletions src/test/ui/did_you_mean/issue-40396.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
fn foo() {
fn main() {
(0..13).collect<Vec<i32>>();
//~^ ERROR chained comparison
}

fn bar() {
Vec<i32>::new();
//~^ ERROR chained comparison
}

fn qux() {
(0..13).collect<Vec<i32>();
//~^ ERROR chained comparison
}

fn main() {}
4 changes: 2 additions & 2 deletions src/test/ui/did_you_mean/issue-40396.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LL | (0..13).collect::<Vec<i32>>();
| ^^

error: chained comparison operators require parentheses
--> $DIR/issue-40396.rs:7:8
--> $DIR/issue-40396.rs:4:8
|
LL | Vec<i32>::new();
| ^^^^^
Expand All @@ -19,7 +19,7 @@ LL | Vec::<i32>::new();
| ^^

error: chained comparison operators require parentheses
--> $DIR/issue-40396.rs:12:20
--> $DIR/issue-40396.rs:6:20
|
LL | (0..13).collect<Vec<i32>();
| ^^^^^
Expand Down
0