]> git.lizzy.rs Git - rust.git/log
rust.git
2 years agoDisplay an extra note for trailing semicolon lint with trailing macro
Aaron Hill [Thu, 22 Jul 2021 16:24:42 +0000 (11:24 -0500)]
Display an extra note for trailing semicolon lint with trailing macro

Currently, we parse macros at the end of a block
(e.g. `fn foo() { my_macro!() }`) as expressions, rather than
statements. This means that a macro invoked in this position
cannot expand to items or semicolon-terminated expressions.

In the future, we might want to start parsing these kinds of macros
as statements. This would make expansion more 'token-based'
(i.e. macro expansion behaves (almost) as if you just textually
replaced the macro invocation with its output). However,
this is a breaking change (see PR #78991), so it will require
further discussion.

Since the current behavior will not be changing any time soon,
we need to address the interaction with the
`SEMICOLON_IN_EXPRESSIONS_FROM_MACROS` lint. Since we are parsing
the result of macro expansion as an expression, we will emit a lint
if there's a trailing semicolon in the macro output. However, this
results in a somewhat confusing message for users, since it visually
looks like there should be no problem with having a semicolon
at the end of a block
(e.g. `fn foo() { my_macro!() }` => `fn foo() { produced_expr; }`)

To help reduce confusion, this commit adds a note explaining
that the macro is being interpreted as an expression. Additionally,
we suggest adding a semicolon after the macro *invocation* - this
will cause us to parse the macro call as a statement. We do *not*
use a structured suggestion for this, since the user may actually
want to remove the semicolon from the macro definition (allowing
the block to evaluate to the expression produced by the macro).

2 years agochange doc comment
Ellen [Sat, 24 Jul 2021 16:32:02 +0000 (17:32 +0100)]
change doc comment

2 years agonetbsd enabled ucred
David Carlier [Sat, 24 Jul 2021 15:02:35 +0000 (16:02 +0100)]
netbsd enabled ucred

2 years agoAuto merge of #87296 - Aaron1011:inert-warn, r=petrochenkov
bors [Sat, 24 Jul 2021 13:19:17 +0000 (13:19 +0000)]
Auto merge of #87296 - Aaron1011:inert-warn, r=petrochenkov

Warn on inert attributes used on bang macro invocation

These attributes are currently discarded.
This may change in the future (see #63221), but for now,
placing inert attributes on a macro invocation does nothing,
so we should warn users about it.

Technically, it's possible for there to be attribute macro
on the same macro invocation (or at a higher scope), which
inspects the inert attribute. For example:

```rust
#[look_for_inline_attr]
#[inline]
my_macro!()

#[look_for_nested_inline]
mod foo { #[inline] my_macro!() }
```

However, this would be a very strange thing to do.
Anyone running into this can manually suppress the warning.

2 years agoget rid of NoMirFor error variant
Ralf Jung [Sat, 24 Jul 2021 12:08:04 +0000 (14:08 +0200)]
get rid of NoMirFor error variant

2 years agorename Validator → Checker
Ralf Jung [Sat, 24 Jul 2021 11:27:17 +0000 (13:27 +0200)]
rename Validator → Checker

2 years agorename const checking visitor module to check_consts::check
Ralf Jung [Sat, 24 Jul 2021 11:16:59 +0000 (13:16 +0200)]
rename const checking visitor module to check_consts::check

2 years agoAuto merge of #86461 - crlf0710:rich_vtable, r=nikomatsakis
bors [Sat, 24 Jul 2021 10:21:23 +0000 (10:21 +0000)]
Auto merge of #86461 - crlf0710:rich_vtable, r=nikomatsakis

Refactor vtable format for upcoming trait_upcasting feature.

This modifies vtable format:
1. reordering occurrence order of methods coming from different traits
2. include `VPtr`s for supertraits where this vtable cannot be directly reused during trait upcasting.
Also, during codegen, the vtables corresponding to these newly included `VPtr` will be requested and generated.

For the cases where this vtable can directly used, now the super trait vtable has exactly the same content to some prefix of this one.

r? `@bjorn3`
cc `@RalfJung`
cc `@rust-lang/wg-traits`

2 years agoDOC: remove unnecessary feature crate attribute from example code
Matthias Geier [Sat, 24 Jul 2021 09:27:42 +0000 (11:27 +0200)]
DOC: remove unnecessary feature crate attribute from example code

2 years agoAuto merge of #84589 - In-line:zircon-thread-name, r=JohnTitor
bors [Sat, 24 Jul 2021 07:40:34 +0000 (07:40 +0000)]
Auto merge of #84589 - In-line:zircon-thread-name, r=JohnTitor

Implement setting thread name for Fuchsia

2 years agoAuto merge of #87415 - Mark-Simulacrum:bump-version, r=Mark-Simulacrum
bors [Sat, 24 Jul 2021 04:59:29 +0000 (04:59 +0000)]
Auto merge of #87415 - Mark-Simulacrum:bump-version, r=Mark-Simulacrum

Bump to 1.56

r? `@pietroalbini`

2 years agoAuto merge of #87338 - SparrowLii:MaybeTrait, r=wesleywiser
bors [Sat, 24 Jul 2021 02:30:35 +0000 (02:30 +0000)]
Auto merge of #87338 - SparrowLii:MaybeTrait, r=wesleywiser

Simplify the collecting of `? Trait` bounds in where clause

This PR fixes the FIXME about using less rightward drift and only one error reporting when collecting of `?Trait` bounds in where clause.
Checking whether the path length of `bound_ty` is 1 can be replaced by whether `unresolved_segments` in the partial_res is 0.
Checking whether the `param.kind` is `Type{...}` can also be omitted. One Fx hash calculation will be done for Const or Lifetime param, but the impact on efficiency should be small IMO

2 years agoRemove detection of rustup and cargo in 'missing extern crate' diagnostics
Joshua Nelson [Thu, 22 Jul 2021 02:04:05 +0000 (02:04 +0000)]
Remove detection of rustup and cargo in 'missing extern crate' diagnostics

Previously, this would change the test output when RUSTUP_HOME was set:

```
---- [ui] ui/issues/issue-49851/compiler-builtins-error.rs stdout ----
diff of stderr:

1       error[E0463]: can't find crate for `core`
2          |
3          = note: the `thumbv7em-none-eabihf` target may not be installed
+          = help: consider downloading the target with `rustup target add thumbv7em-none-eabihf`
4
5       error: aborting due to previous error
6
```

Originally, I fixed it by explicitly unsetting RUSTUP_HOME in
compiletest. Then I realized that almost no one has RUSTUP_HOME set,
since rustup doesn't set it itself; although it does set RUST_RECURSION_COUNT
whenever it launches a proxy. Then it was pointed out that this runtime
check doesn't really make sense and it's fine to make it unconditional.

2 years agoIEEE 754 is not an RFC
Jacob Lifshay [Sat, 24 Jul 2021 00:35:18 +0000 (17:35 -0700)]
IEEE 754 is not an RFC

2 years agoAuto merge of #86429 - JohnTitor:get-by-key-enum-part-2, r=oli-obk
bors [Fri, 23 Jul 2021 23:17:38 +0000 (23:17 +0000)]
Auto merge of #86429 - JohnTitor:get-by-key-enum-part-2, r=oli-obk

Improve `get_by_key_enumerated` more

Follow-up of #86392, this applies the suggestions by `@m-ou-se.`

r? `@m-ou-se`

2 years agoRename `known_attrs` to `expanded_inert_attrs` and move to rustc_expand
Aaron Hill [Thu, 22 Jul 2021 22:40:01 +0000 (17:40 -0500)]
Rename `known_attrs` to `expanded_inert_attrs` and move to rustc_expand

There's no need for this to be (untracked) global state.

2 years agoBump to 1.56
Mark Rousskov [Fri, 23 Jul 2021 21:04:59 +0000 (17:04 -0400)]
Bump to 1.56

2 years agoAuto merge of #87413 - JohnTitor:rollup-dht22jk, r=JohnTitor
bors [Fri, 23 Jul 2021 20:26:33 +0000 (20:26 +0000)]
Auto merge of #87413 - JohnTitor:rollup-dht22jk, r=JohnTitor

Rollup of 14 pull requests

Successful merges:

 - #86410 (VecMap::get_value_matching should return just one element)
 - #86790 (Document iteration order of `retain` functions)
 - #87171 (Remove Option from BufWriter)
 - #87175 (Stabilize `into_parts()` and `into_error()`)
 - #87185 (Fix panics on Windows when the build was cancelled)
 - #87191 (Package LLVM libs for the target rather than the build host)
 - #87255 (better support for running libcore tests with Miri)
 - #87266 (Add testcase for 87076)
 - #87283 (Add `--codegen-backends=foo,bar` configure flag)
 - #87322 (fix: clarify suggestion that `&T` must refer to `T: Sync` for `&T: Send`)
 - #87358 (Fix `--dry-run` when download-ci-llvm is set)
 - #87380 (Don't default to `submodules = true` unless the rust repo has a .git directory)
 - #87398 (Add test for fonts used for module items)
 - #87412 (Add missing article)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoFix parameter names in std::env documentation.
Érico Nogueira Rolim [Fri, 23 Jul 2021 05:32:55 +0000 (02:32 -0300)]
Fix parameter names in std::env documentation.

The function parameters were renamed, but the documentation wasn't.

2 years agoRollup merge of #87412 - r00ster91:patch-13, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:15 +0000 (04:31 +0900)]
Rollup merge of #87412 - r00ster91:patch-13, r=Mark-Simulacrum

Add missing article

Redo of #87305. I messed up in that PR and wasn't sure how to fix it.

2 years agoRollup merge of #87398 - GuillaumeGomez:test-font-module-items, r=notriddle
Yuki Okushi [Fri, 23 Jul 2021 19:31:14 +0000 (04:31 +0900)]
Rollup merge of #87398 - GuillaumeGomez:test-font-module-items, r=notriddle

Add test for fonts used for module items

Fixes #85632.

r? `@notriddle`

2 years agoRollup merge of #87380 - jyn514:smarter-submodule-defaults, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:13 +0000 (04:31 +0900)]
Rollup merge of #87380 - jyn514:smarter-submodule-defaults, r=Mark-Simulacrum

Don't default to `submodules = true` unless the rust repo has a .git directory

Should hopefully fix https://github.com/rust-lang/rust/pull/82653#issuecomment-885093033 - `@semarie` can you confirm?

r? `@Mark-Simulacrum`

2 years agoRollup merge of #87358 - jyn514:dry-run, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:12 +0000 (04:31 +0900)]
Rollup merge of #87358 - jyn514:dry-run, r=Mark-Simulacrum

Fix `--dry-run` when download-ci-llvm is set

Previously it would error out:

```
$ x check --dry-run
thread 'main' panicked at 'std::fs::read_to_string(ci_llvm.join("link-type.txt")) failed with No such file or directory (os error 2) ("CI llvm missing: /home/joshua/rustc3/build/tmp-dry-run/x86_64-unknown-linux-gnu/ci-llvm")', src/bootstrap/config.rs:795:33
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Build completed unsuccessfully in 0:00:10
```

2 years agoRollup merge of #87322 - chazkiker2:fix/suggestion-ref-sync-send, r=estebank
Yuki Okushi [Fri, 23 Jul 2021 19:31:11 +0000 (04:31 +0900)]
Rollup merge of #87322 - chazkiker2:fix/suggestion-ref-sync-send, r=estebank

fix: clarify suggestion that `&T` must refer to `T: Sync` for `&T: Send`

### Description

- [x] fix #86507
- [x] add UI test for relevant code from issue
- [x] change `rustc_trait_selection/src/traits/error_reporting/suggestions.rs` to include a more clear suggestion when `&T` fails to satisfy `Send` bounds due to the fact that `T` fails to implement `Sync`
- [x] update UI test in Clippy: `src/tools/tests/ui/future_not_send.stderr`

2 years agoRollup merge of #87283 - pietroalbini:configure-codegen-backends, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:10 +0000 (04:31 +0900)]
Rollup merge of #87283 - pietroalbini:configure-codegen-backends, r=Mark-Simulacrum

Add `--codegen-backends=foo,bar` configure flag

Unfortunately this requires a proper `./configure` flag, as the codegen backends config entry is a list, not a string (breaking `--set`).

2 years agoRollup merge of #87266 - hellow554:issue87076, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:09 +0000 (04:31 +0900)]
Rollup merge of #87266 - hellow554:issue87076, r=Mark-Simulacrum

Add testcase for 87076

Closes #87076

I also moved the issue tests into the issues subfolder, nothing changed there.

2 years agoRollup merge of #87255 - RalfJung:miri-test-libcore, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:07 +0000 (04:31 +0900)]
Rollup merge of #87255 - RalfJung:miri-test-libcore, r=Mark-Simulacrum

better support for running libcore tests with Miri

See https://github.com/rust-lang/miri-test-libstd/issues/4 for a description of the problem that this fixes.
Thanks to `@hyd-dev` for suggesting this patch!

2 years agoRollup merge of #87191 - adamgemmell:dev/llvm-lib-package, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:06 +0000 (04:31 +0900)]
Rollup merge of #87191 - adamgemmell:dev/llvm-lib-package, r=Mark-Simulacrum

Package LLVM libs for the target rather than the build host

Fixes https://github.com/rust-lang/rust/issues/85250

`dist.rs` uses, in the `rust-dev` stage, `llvm-config --libfiles` to get a list of the LLVM library files built but of course only for the build host. If the target differs we want to package lib files from the target's build tree instead. This is done by splitting/rejoining the paths on their build directories.

At the moment `tree` on the LLVM build directories seems to give almost identical output, but of course this might not be the case in the future. If a file is missing in the target's build tree then this stage will error in the `builder.install()` call. If the target build tree has an extra file then it silently won't be copied and we'll get a linker error when building using this artifact (via `download-ci-llvm = "if-available"`), though we would have received a linker error anyway without this change.

There was also a typo in the example config around this option.

2 years agoRollup merge of #87185 - waterlens:issue-86499-fix, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:05 +0000 (04:31 +0900)]
Rollup merge of #87185 - waterlens:issue-86499-fix, r=Mark-Simulacrum

Fix panics on Windows when the build was cancelled

Fixes #86499

cc `@jyn514`

2 years agoRollup merge of #87175 - inquisitivecrystal:inner-error, r=kennytm
Yuki Okushi [Fri, 23 Jul 2021 19:31:04 +0000 (04:31 +0900)]
Rollup merge of #87175 - inquisitivecrystal:inner-error, r=kennytm

Stabilize `into_parts()` and `into_error()`

This stabilizes `IntoInnerError`'s `into_parts()` and `into_error()` methods, currently gated behind the `io_into_inner_error_parts` feature. The FCP has [already completed.](https://github.com/rust-lang/rust/issues/79704#issuecomment-880652967)

Closes #79704.

2 years agoRollup merge of #87171 - Alexendoo:bufwriter-option, r=Mark-Simulacrum
Yuki Okushi [Fri, 23 Jul 2021 19:31:03 +0000 (04:31 +0900)]
Rollup merge of #87171 - Alexendoo:bufwriter-option, r=Mark-Simulacrum

Remove Option from BufWriter

Fixes #72925

2 years agoRollup merge of #86790 - janikrabe:retain-iter-order-doc, r=m-ou-se
Yuki Okushi [Fri, 23 Jul 2021 19:30:56 +0000 (04:30 +0900)]
Rollup merge of #86790 - janikrabe:retain-iter-order-doc, r=m-ou-se

Document iteration order of `retain` functions

For `HashSet` and `HashMap`, this simply copies the comment from
`BinaryHeap::retain`.

For `BTreeSet` and `BTreeMap`, this adds an additional guarantee that
wasn't previously documented. I think that because these data structures
are inherently ordered and other functions guarantee ordered iteration,
it makes sense to provide this guarantee for `retain` as well.

2 years agoRollup merge of #86410 - spastorino:get_value_matching, r=oli-obk
Yuki Okushi [Fri, 23 Jul 2021 19:30:56 +0000 (04:30 +0900)]
Rollup merge of #86410 - spastorino:get_value_matching, r=oli-obk

VecMap::get_value_matching should return just one element

r? `@nikomatsakis`

Related to #86465 and #87287

2 years agoAdd `#[unstable]` on new functions
Benoît du Garreau [Thu, 8 Jul 2021 14:14:13 +0000 (16:14 +0200)]
Add `#[unstable]` on new functions

2 years agoAdd unstable attribute for `A` in `Drain` and `IntoIter`
Benoît du Garreau [Sun, 27 Jun 2021 22:22:52 +0000 (00:22 +0200)]
Add unstable attribute for `A` in `Drain` and `IntoIter`

2 years agoAdd support for custom allocator in `VecDeque`
Benoît du Garreau [Thu, 24 Jun 2021 12:44:09 +0000 (14:44 +0200)]
Add support for custom allocator in `VecDeque`

2 years agoupdate clippy ui test 'future_not_send.stderr' to match
chaz-kiker [Fri, 23 Jul 2021 17:30:52 +0000 (12:30 -0500)]
update clippy ui test 'future_not_send.stderr' to match
the new diagnostic messages

2 years agoAuto merge of #87345 - Xanewok:update-rls, r=Mark-Simulacrum
bors [Fri, 23 Jul 2021 17:40:13 +0000 (17:40 +0000)]
Auto merge of #87345 - Xanewok:update-rls, r=Mark-Simulacrum

Unbreak and update RLS

Closes #86905
Closes #86606
Closes #86607

This also prunes old mio 0.6 thanks to Tokio 1.0 bump, so this should now build on aarch64 Windows.

r? `@Mark-Simulacrum`

2 years agoMark `format_args_nl` as `#[doc(hidden)]`
Jonas Schievink [Fri, 23 Jul 2021 17:04:07 +0000 (19:04 +0200)]
Mark `format_args_nl` as `#[doc(hidden)]`

2 years agoAdd missing article
r00ster [Fri, 23 Jul 2021 17:02:52 +0000 (19:02 +0200)]
Add missing article

2 years agoImplement `AssignToDroppingUnionField` in THIR unsafeck
LeSeulArtichaut [Fri, 23 Jul 2021 13:26:12 +0000 (15:26 +0200)]
Implement `AssignToDroppingUnionField` in THIR unsafeck

2 years agoAuto merge of #87400 - JohnTitor:rollup-zbwyuxi, r=JohnTitor
bors [Fri, 23 Jul 2021 12:33:58 +0000 (12:33 +0000)]
Auto merge of #87400 - JohnTitor:rollup-zbwyuxi, r=JohnTitor

Rollup of 8 pull requests

Successful merges:

 - #87034 (DOC: fix hypothetical Rust code in `step_by()` docstring)
 - #87298 (memorialize Anna Harren in the bastion of the turbofish)
 - #87332 (Don't hide fields of enum struct variants)
 - #87362 (Make `x.py d` an alias for `x.py doc`)
 - #87372 (Move calls to test_main into one function)
 - #87373 (Extend HIR WF checking to fields)
 - #87376 (Change rustdoc logo to use the full container size)
 - #87383 (Add regression tests for the impl_trait_in_bindings ICEs)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoAdd missing winapi feature to workspace hack
Mark Rousskov [Fri, 23 Jul 2021 12:15:40 +0000 (08:15 -0400)]
Add missing winapi feature to workspace hack

2 years agoAdd ConstraintLocator docs
Santiago Pastorino [Thu, 22 Jul 2021 21:24:20 +0000 (18:24 -0300)]
Add ConstraintLocator docs

2 years agoAdd VecMap::get_value_matching and assert if > 1 element
Santiago Pastorino [Thu, 17 Jun 2021 19:59:00 +0000 (16:59 -0300)]
Add VecMap::get_value_matching and assert if > 1 element

Otherwise is a bug that we want to uncover.

2 years agoUpdate RELEASES.md
XAMPPRocky [Fri, 23 Jul 2021 11:08:58 +0000 (13:08 +0200)]
Update RELEASES.md

2 years agoUpdate RELEASES.md
XAMPPRocky [Fri, 23 Jul 2021 11:06:43 +0000 (13:06 +0200)]
Update RELEASES.md

Co-authored-by: Mark Rousskov <mark.simulacrum@gmail.com>
2 years agoUpdate RELEASES.md
XAMPPRocky [Fri, 23 Jul 2021 11:06:23 +0000 (13:06 +0200)]
Update RELEASES.md

2 years agoRollup merge of #87383 - Alexendoo:impl_trait_in_bindings-tests, r=oli-obk
Yuki Okushi [Fri, 23 Jul 2021 10:27:51 +0000 (19:27 +0900)]
Rollup merge of #87383 - Alexendoo:impl_trait_in_bindings-tests, r=oli-obk

Add regression tests for the impl_trait_in_bindings ICEs

Closes #54600, closes #54840, closes #58504, closes #58956, closes #70971, closes #79099, closes #84919, closes #86201, closes #86642, closes #87295

r? ``@oli-obk``

2 years agoRollup merge of #87376 - Thomasdezeeuw:rustdoc-large-logo, r=GuillaumeGomez
Yuki Okushi [Fri, 23 Jul 2021 10:27:49 +0000 (19:27 +0900)]
Rollup merge of #87376 - Thomasdezeeuw:rustdoc-large-logo, r=GuillaumeGomez

Change rustdoc logo to use the full container size

We have a logo in svg that scales nicely to large sizes, but by default
is only 5px large, i.e. very small. With the change the logo expands to
the full size. By only setting the height to 100% we ensure that the
width-height ratio isn't changed.

2 years agoRollup merge of #87373 - Aaron1011:hir-wf-field, r=estebank
Yuki Okushi [Fri, 23 Jul 2021 10:27:48 +0000 (19:27 +0900)]
Rollup merge of #87373 - Aaron1011:hir-wf-field, r=estebank

Extend HIR WF checking to fields

r? ``@estebank``

2 years agoRollup merge of #87372 - GuillaumeGomez:move-test_main-calls, r=jyn514
Yuki Okushi [Fri, 23 Jul 2021 10:27:47 +0000 (19:27 +0900)]
Rollup merge of #87372 - GuillaumeGomez:move-test_main-calls, r=jyn514

Move calls to test_main into one function

Fixes #86254.

cc ``@jyn514``
r? ``@camelid``

2 years agoRollup merge of #87362 - inquisitivecrystal:bootstrap-doc, r=jyn514
Yuki Okushi [Fri, 23 Jul 2021 10:27:46 +0000 (19:27 +0900)]
Rollup merge of #87362 - inquisitivecrystal:bootstrap-doc, r=jyn514

Make `x.py d` an alias for `x.py doc`

In rust-lang/cargo#9680, `d` was added to Cargo as an alias for `doc`. This PR adds the same alias to `x.py`. The same considerations of convenience that applied to Cargo also apply to `x.py`, and in any case, the two should be kept symmetrical.

2 years agoRollup merge of #87332 - camelid:dont-hide-fields, r=GuillaumeGomez
Yuki Okushi [Fri, 23 Jul 2021 10:27:45 +0000 (19:27 +0900)]
Rollup merge of #87332 - camelid:dont-hide-fields, r=GuillaumeGomez

Don't hide fields of enum struct variants

* The toggle adds visual clutter
* It's easy to miss that there are fields
* Tuple variant fields are always shown, so it is inconsistent to hide
  struct variant fields
* It's annoying to have to click the toggle every time

2 years agoRollup merge of #87298 - boringcactus:patch-2, r=steveklabnik
Yuki Okushi [Fri, 23 Jul 2021 10:27:44 +0000 (19:27 +0900)]
Rollup merge of #87298 - boringcactus:patch-2, r=steveklabnik

memorialize Anna Harren in the bastion of the turbofish

this seems fitting, at least to me.

2 years agoRollup merge of #87034 - mgeier:doc-step_by, r=JohnTitor
Yuki Okushi [Fri, 23 Jul 2021 10:27:43 +0000 (19:27 +0900)]
Rollup merge of #87034 - mgeier:doc-step_by, r=JohnTitor

DOC: fix hypothetical Rust code in `step_by()` docstring

I don't know how important that is, but if I'm not mistaken, the hypothetical code in the docstring of `step_by()` (see https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.step_by) isn't correct.

I guess writing `next()` instead of `self.next()` isn't a biggie, but this would also imply that `advance_n_and_return_first()` is a method, which AFAICT it isn't.

I've also done some re-formatting in a separate commit and a parameter renaming in yet another commit.

Feel free to take or leave any combination of those commits.

2 years agoAdd test for fonts used for module items
Guillaume Gomez [Fri, 23 Jul 2021 09:41:21 +0000 (11:41 +0200)]
Add test for fonts used for module items

2 years agoSort features alphabetically
Yuki Okushi [Mon, 21 Jun 2021 21:30:16 +0000 (06:30 +0900)]
Sort features alphabetically

2 years agoUse `map_while` instead of `take_while` + `map`
Yuki Okushi [Mon, 21 Jun 2021 21:27:22 +0000 (06:27 +0900)]
Use `map_while` instead of `take_while` + `map`

2 years agoImprove `get_by_key_enumerated` more
Yuki Okushi [Fri, 18 Jun 2021 09:22:41 +0000 (18:22 +0900)]
Improve `get_by_key_enumerated` more

2 years agoAdd regression test
Giacomo Stevanato [Wed, 21 Jul 2021 12:42:32 +0000 (14:42 +0200)]
Add regression test

2 years agoFix span when suggesting to add an associated type bound
Giacomo Stevanato [Wed, 21 Jul 2021 12:42:20 +0000 (14:42 +0200)]
Fix span when suggesting to add an associated type bound

2 years agoCombine two loops in `check_match`
Camelid [Fri, 25 Dec 2020 18:49:03 +0000 (10:49 -0800)]
Combine two loops in `check_match`

Suggested by Nadrieril in
https://github.com/rust-lang/rust/pull/79051#discussion_r548778186.

2 years agoAuto merge of #87287 - oli-obk:fixup_fixup_fixup_opaque_types, r=spastorino
bors [Fri, 23 Jul 2021 03:40:26 +0000 (03:40 +0000)]
Auto merge of #87287 - oli-obk:fixup_fixup_fixup_opaque_types, r=spastorino

 Make mir borrowck's use of opaque types independent of the typeck query's result

fixes #87218
fixes #86465

we used to use the typeck results only to generate an obligation for the mir borrowck type to be equal to the typeck result.

When i removed the `fixup_opaque_types` function in #87200, I exposed a bug that showed that mir borrowck can't doesn't get enough information from typeck in order to build the correct lifetime mapping from opaque type usage to the actual concrete type. We therefor now fully compute the information within mir borrowck (we already did that, but we only used it to verify the typeck result) and stop using the typeck information.

We will likely be able to remove most opaque type information from the borrowck results in the future and just have all current callers use the mir borrowck result instead.

r? `@spastorino`

2 years agoSquash all commits.
chaz-kiker [Tue, 20 Jul 2021 20:04:32 +0000 (15:04 -0500)]
Squash all commits.

add test for issue 86507

add stderr for issue 86507

update issue-86507 UI test

add comment for the expected error in UI test file

add proper 'refers to <ref_type>' in suggestion

update diagnostic phrasing; update test to match new phrasing; re-organize logic for checking T: Sync

evaluate additional obligation to figure out if T is Sync

run './x.py test tidy --bless'

incorporate changes from review; reorganize logic for readability

2 years agoRemove Option from BufWriter
Alex Macleod [Thu, 15 Jul 2021 19:04:14 +0000 (20:04 +0100)]
Remove Option from BufWriter

Fixes #72925

2 years agoDon't hide fields of enum struct variants
Noah Lev [Mon, 17 May 2021 23:49:38 +0000 (16:49 -0700)]
Don't hide fields of enum struct variants

* The toggle adds visual clutter
* It's easy to miss that there are fields
* Tuple variant fields are always shown, so it is inconsistent to hide
  struct variant fields
* It's annoying to have to click the toggle every time

2 years agoAdd regression tests for the impl_trait_in_bindings ICEs
Alex Macleod [Thu, 22 Jul 2021 18:16:33 +0000 (19:16 +0100)]
Add regression tests for the impl_trait_in_bindings ICEs

2 years agoAuto merge of #86212 - pnkfelix:mainline-targetted-revert-81473-warn-write-only-field...
bors [Thu, 22 Jul 2021 18:41:27 +0000 (18:41 +0000)]
Auto merge of #86212 - pnkfelix:mainline-targetted-revert-81473-warn-write-only-fields, r=simulacrum

Revert PR 81473 to resolve (on mainline) issues 81626 and 81658.

This is a nightly-targetted variant of PR #83171

The intent is to just address issue #81658 on all release channels, rather that keep repeatedly reverting PR #83171 on beta.

However, our intent is *also* to reland PR #83171 after we have addressed issue #81658 , most likely by coupling the re-landing of PR #83171 with an enhancement like PR #83004

2 years agoDon't default to `submodules = true` unless the rust repo has a .git directory
Joshua Nelson [Thu, 22 Jul 2021 18:20:46 +0000 (14:20 -0400)]
Don't default to `submodules = true` unless the rust repo has a .git directory

2 years agoChange rustdoc logo to use the full container size
Thomas de Zeeuw [Thu, 22 Jul 2021 15:57:06 +0000 (17:57 +0200)]
Change rustdoc logo to use the full container size

We have a logo in svg that scales nicely to large sizes, but by default
is only 5px large, i.e. very small. With the change the logo expands to
the full size. By only setting the height to 100% we ensure that the
width-height ratio isn't changed.

2 years agoAdd comment and more tests.
Charles Lew [Thu, 22 Jul 2021 15:29:53 +0000 (23:29 +0800)]
Add comment and more tests.

2 years agoAdd support for powerpc-unknown-freebsd
Piotr Kubaj [Thu, 22 Jul 2021 15:29:33 +0000 (17:29 +0200)]
Add support for powerpc-unknown-freebsd

2 years agoExtend HIR WF checking to fields
Aaron Hill [Tue, 20 Jul 2021 15:56:33 +0000 (10:56 -0500)]
Extend HIR WF checking to fields

2 years agoAuto merge of #87371 - ehuss:update-cargo, r=ehuss
bors [Thu, 22 Jul 2021 15:10:19 +0000 (15:10 +0000)]
Auto merge of #87371 - ehuss:update-cargo, r=ehuss

Update cargo

2 commits in 4e143fd131e0c16cefd008456e974236ca54e62e..cebef2951ee69617852844894164b54ed478a7da
2021-07-20 21:55:45 +0000 to 2021-07-22 13:01:52 +0000
- Changes rustc argument from `--force-warns` to `--force-warn` (rust-lang/cargo#9714)
- Display registry name instead of registry URL when possible (rust-lang/cargo#9632)

2 years agoMove calls to test_main into one function
Guillaume Gomez [Thu, 22 Jul 2021 15:01:12 +0000 (17:01 +0200)]
Move calls to test_main into one function

2 years agoUpdate cargo
Eric Huss [Thu, 22 Jul 2021 14:58:45 +0000 (07:58 -0700)]
Update cargo

2 years agoAuto merge of #87366 - GuillaumeGomez:rollup-7muueab, r=GuillaumeGomez
bors [Thu, 22 Jul 2021 12:29:30 +0000 (12:29 +0000)]
Auto merge of #87366 - GuillaumeGomez:rollup-7muueab, r=GuillaumeGomez

Rollup of 6 pull requests

Successful merges:

 - #87270 (Don't display <table> in item summary)
 - #87281 (Normalize generic_ty before checking if bound is met)
 - #87288 (rustdoc: Restore --default-theme, etc, by restoring varname escaping)
 - #87307 (Allow combining -Cprofile-generate and -Cpanic=unwind when targeting MSVC.)
 - #87343 (Regression fix to avoid further beta backports: Remove unsound TrustedRandomAccess implementations)
 - #87357 (Update my name/email in .mailmap)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

2 years agoRollup merge of #87357 - lilyball:mailmap, r=jyn514
Guillaume Gomez [Thu, 22 Jul 2021 11:39:25 +0000 (13:39 +0200)]
Rollup merge of #87357 - lilyball:mailmap, r=jyn514

Update my name/email in .mailmap

I should have done this years ago.

My name is also scattered across many other rust-lang repos, but none of the other repos I've looked at have a `.mailmap`. Is there any particular reason for this, or any process for updating my name/email everywhere?

2 years agoRollup merge of #87343 - steffahn:fix_unsound_zip_optimization_only_regression_fix...
Guillaume Gomez [Thu, 22 Jul 2021 11:39:24 +0000 (13:39 +0200)]
Rollup merge of #87343 - steffahn:fix_unsound_zip_optimization_only_regression_fix, r=cuviper

Regression fix to avoid further beta backports: Remove unsound TrustedRandomAccess implementations

Removes the implementations that depend on the user-definable trait `Copy`.

Only fix regressions to ensure merge in 1.55: Does not modify `vec::IntoIter`.

<hr>

This PR applies the beta-`1.53` backport #86222 (merged as part of #86225), a reduced version of #85874 that only fixes regressions, to `master` in order to avoid the need for further backports from `1.55` onwards. Beta-`1.54` backport already happened with #87136. In case that #85874 gets merged quickly (within a week), this PR would be unnecessary.

r? `@cuviper`

2 years agoRollup merge of #87307 - michaelwoerister:pgo-unwind-msvc, r=nagisa
Guillaume Gomez [Thu, 22 Jul 2021 11:39:23 +0000 (13:39 +0200)]
Rollup merge of #87307 - michaelwoerister:pgo-unwind-msvc, r=nagisa

Allow combining -Cprofile-generate and -Cpanic=unwind when targeting MSVC.

The LLVM limitation that previously prevented this has been fixed in LLVM 9 which is older than the oldest LLVM version we currently support.

Fixes https://github.com/rust-lang/rust/issues/61002.

r? ``@nagisa`` (or anyone else from ``@rust-lang/wg-llvm)``

2 years agoRollup merge of #87288 - ijackson:rustdoc-theme, r=GuillaumeGomez
Guillaume Gomez [Thu, 22 Jul 2021 11:39:22 +0000 (13:39 +0200)]
Rollup merge of #87288 - ijackson:rustdoc-theme, r=GuillaumeGomez

rustdoc: Restore --default-theme, etc, by restoring varname escaping

In #86157

    cd0f93193c84ddc6698f9b65909da71c084dcb74
    Use Tera templates for rustdoc.

dropped the following transformation from the keys of the default settings element's `data-` attribute names:

    .map(|(k, v)| format!(r#" data-{}="{}""#, k.replace('-', "_"), Escape(v)))

The `Escape` part is indeed no longer needed, because Tera does that for us.  But the massaging of `-` to `_` is needed, for the (bizarre) reasons explained in the new comments.

I have tested that the default theme function works again for me.  I have also verified that passing (in shell syntax)

    '--default-theme="zork&"'

escapes the value in the HTML.

Closes #87263

2 years agoRollup merge of #87281 - rust-lang:issue-81487, r=nikomatsakis
Guillaume Gomez [Thu, 22 Jul 2021 11:39:21 +0000 (13:39 +0200)]
Rollup merge of #87281 - rust-lang:issue-81487, r=nikomatsakis

Normalize generic_ty before checking if bound is met

Fixes #81487

r? `@nikomatsakis`

2 years agoRollup merge of #87270 - GuillaumeGomez:item-summary-table, r=notriddle
Guillaume Gomez [Thu, 22 Jul 2021 11:39:20 +0000 (13:39 +0200)]
Rollup merge of #87270 - GuillaumeGomez:item-summary-table, r=notriddle

Don't display <table> in item summary

Fixes #87231.

r? `@notriddle`

2 years agobless nll tests
Oli Scherer [Thu, 22 Jul 2021 11:26:42 +0000 (11:26 +0000)]
bless nll tests

2 years agoAdd a regression test
Oli Scherer [Tue, 20 Jul 2021 15:16:41 +0000 (15:16 +0000)]
Add a regression test

2 years agoResolve nested inference variables.
Oli Scherer [Tue, 20 Jul 2021 15:10:55 +0000 (15:10 +0000)]
Resolve nested inference variables.

I attempted that with the previous code, but I misunderstdood how
`shallow_resolve` works.

2 years agoRemove an unnecessary variable
Oli Scherer [Tue, 20 Jul 2021 10:53:23 +0000 (10:53 +0000)]
Remove an unnecessary variable

2 years agoUse instrument debugging for more readable logs
Oli Scherer [Tue, 20 Jul 2021 10:48:56 +0000 (10:48 +0000)]
Use instrument debugging for more readable logs

2 years agoMake mir borrowck's use of opaque types independent of the typeck query's result
Oli Scherer [Mon, 19 Jul 2021 16:50:43 +0000 (16:50 +0000)]
Make mir borrowck's use of opaque types independent of the typeck query's result

2 years agoFix VecMap::iter_mut
Oli Scherer [Mon, 19 Jul 2021 16:38:14 +0000 (16:38 +0000)]
Fix VecMap::iter_mut

It used to allow you to mutate the key, even though that can invalidate the map by creating duplicate keys.

2 years agoMove implementors directly into lib2
Guillaume Gomez [Wed, 21 Jul 2021 20:30:12 +0000 (22:30 +0200)]
Move implementors directly into lib2

2 years agoAdd tests for default-settings
Guillaume Gomez [Wed, 21 Jul 2021 15:56:41 +0000 (17:56 +0200)]
Add tests for default-settings

3 years agoAuto merge of #86619 - rylev:incr-hashing-profiling, r=wesleywiser
bors [Thu, 22 Jul 2021 10:04:44 +0000 (10:04 +0000)]
Auto merge of #86619 - rylev:incr-hashing-profiling, r=wesleywiser

Profile incremental compilation hashing fingerprints

Adds profiling instrumentation for the hashing of incremental compilation fingerprints per query.

This will eventually feed into the `measureme` and `rustc-perf` infrastructure for tracking if computing hashes changes over time.

TODOs:
* [x] Address the FIXME where we are including node interning in the hash timing.
* [ ] Update measureme/summarize to handle this new data: https://github.com/rust-lang/measureme/pull/166
* [ ] ~Update rustc-perf to handle the new data from measureme~ (will be done at a later time)

r? `@ghost`

cc `@michaelwoerister`

3 years agoAuto merge of #87265 - Aaron1011:hir-wf-fn, r=estebank
bors [Thu, 22 Jul 2021 07:21:45 +0000 (07:21 +0000)]
Auto merge of #87265 - Aaron1011:hir-wf-fn, r=estebank

Support HIR wf checking for function signatures

During function type-checking, we normalize any associated types in
the function signature (argument types + return type), and then
create WF obligations for each of the normalized types. The HIR wf code
does not currently support this case, so any errors that we get have
imprecise spans.

This commit extends `ObligationCauseCode::WellFormed` to support
recording a function parameter, allowing us to get the corresponding
HIR type if an error occurs. Function typechecking is modified to
pass this information during signature normalization and WF checking.
The resulting code is fairly verbose, due to the fact that we can
no longer normalize the entire signature with a single function call.

As part of the refactoring, we now perform HIR-based WF checking
for several other 'typed items' (statics, consts, and inherent impls).

As a result, WF and projection errors in a function signature now
have a precise span, which points directly at the responsible type.
If a function signature is constructed via a macro, this will allow
the error message to point at the code 'most responsible' for the error
(e.g. a user-supplied macro argument).

3 years agoMake `x.py d` an alias for `x.py doc`
inquisitivecrystal [Wed, 21 Jul 2021 07:50:12 +0000 (00:50 -0700)]
Make `x.py d` an alias for `x.py doc`

3 years agoAuto merge of #87250 - robojumper:87199-sized-relaxation, r=nikomatsakis
bors [Thu, 22 Jul 2021 05:02:50 +0000 (05:02 +0000)]
Auto merge of #87250 - robojumper:87199-sized-relaxation, r=nikomatsakis

Fix implicit Sized relaxation when attempting to relax other, unsupported trait

Fixes #87199.

Do note that this bug fix causes code like the `ref_arg::<[i32]>(&[5]);` line in the test case in combination with an affected function to no longer compile.

3 years agotemporarily ignore a test until we reland PR 83171.
Felix S. Klock II [Thu, 22 Jul 2021 03:03:06 +0000 (23:03 -0400)]
temporarily ignore a test until we reland PR 83171.

3 years agoAllow some temporarily dead code.
Felix S. Klock II [Thu, 22 Jul 2021 02:57:10 +0000 (22:57 -0400)]
Allow some temporarily dead code.

I expect these two methods to come back very soon; noise of removing them to satisfy lint seems wrong.

3 years agoRevert PR 81473 to resolve (on mainline) issues 81626 and 81658.
Felix S. Klock II [Mon, 15 Mar 2021 20:39:41 +0000 (16:39 -0400)]
Revert PR 81473 to resolve (on mainline) issues 81626 and 81658.

Revert "Add missing brace"

This reverts commit 85ad773049536d7fed9a94ae0ac74f97135c8655.

Revert "Simplify base_expr"

This reverts commit 899aae465eb4ef295dc1eeb2603f744568e0768c.

Revert "Warn write-only fields"

This reverts commit d3c69a4c0dd98af2611b7553d1a65afef6a6ccb0.