Skip to content
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

Rollup of 7 pull requests #64901

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2ae9016
Point at definition when misusing ADT
estebank Sep 22, 2019
d8bf4f1
Add long error explanation for E0533
GuillaumeGomez Sep 24, 2019
e58e144
Update ui tests
GuillaumeGomez Sep 24, 2019
22b87a5
Add support for relating slices in `super_relate_consts`.
skinnyBat Sep 27, 2019
875fa72
Add inline function `get_slice_bytes` to remove code duplication.
skinnyBat Sep 28, 2019
c94fea0
Move `get_slice_bytes` to `rustc::mir::interpret` so it can be reused.
skinnyBat Sep 28, 2019
5cb0039
Added test for mismatched slices, and byte slices.
skinnyBat Sep 28, 2019
8a167ed
Point at enclosing match when expecting `()` in arm
estebank Sep 27, 2019
ae51953
review comments
estebank Sep 28, 2019
c861e24
clean up
estebank Sep 28, 2019
54bad93
Add a couple more test cases, including non-ascii strings.
skinnyBat Sep 28, 2019
8fd03b1
syntax: fix #64682.
Centril Sep 29, 2019
d695e24
fixed typo
jakevossen5 Sep 29, 2019
825a6ab
Remove legacy grammar
XAMPPRocky Sep 29, 2019
66db9e7
Rollup merge of #64691 - estebank:unexpected-variant, r=Centril
Centril Sep 29, 2019
787ae9c
Rollup merge of #64735 - GuillaumeGomez:long-err-explanation-E0533, r…
Centril Sep 29, 2019
8c3fd1c
Rollup merge of #64825 - estebank:match-unit, r=Centril
Centril Sep 29, 2019
f1a3ceb
Rollup merge of #64858 - skinny121:str-const-generics, r=varkor
Centril Sep 29, 2019
948f853
Rollup merge of #64894 - Centril:fix-64682, r=petrochenkov
Centril Sep 29, 2019
7e785d0
Rollup merge of #64896 - XAMPPRocky:remove-grammar, r=Centril
Centril Sep 29, 2019
f39a627
Rollup merge of #64898 - jakevossen5:master, r=jonas-schievink
Centril Sep 29, 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ or reading the [rustc guide][rustcguidebuild].
* `curl`
* `git`
* `ssl` which comes in `libssl-dev` or `openssl-devel`
* `pkg-config` if you are on compiling on Linux and targeting Linux
* `pkg-config` if you are compiling on Linux and targeting Linux

2. Clone the [source] with `git`:

Expand Down
Loading