-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #130439 - matthiaskrgr:rollup-1lkzo74, r=matthiaskrgr
Rollup of 4 pull requests Successful merges: - #123436 (linker: Allow MSVC to use import libraries following the Meson/MinGW convention) - #130410 (Don't ICE when generating `Fn` shim for async closure with borrowck error) - #130412 (Don't ICE when RPITIT captures more method args than trait definition) - #130436 (Ignore reduce-fadd-unordered on SGX platform) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
12 changed files
with
161 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
tests/ui/async-await/async-closures/closure-shim-borrowck-error.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
error[E0507]: cannot move out of `x` which is behind a mutable reference | ||
--> $DIR/closure-shim-borrowck-error.rs:12:18 | ||
| | ||
LL | needs_fn_mut(async || { | ||
| ^^^^^^^^ `x` is moved here | ||
LL | | ||
LL | x.hello(); | ||
| - | ||
| | | ||
| variable moved due to use in coroutine | ||
| move occurs because `x` has type `Ty`, which does not implement the `Copy` trait | ||
| | ||
note: if `Ty` implemented `Clone`, you could clone the value | ||
--> $DIR/closure-shim-borrowck-error.rs:18:1 | ||
| | ||
LL | x.hello(); | ||
| - you could clone this value | ||
... | ||
LL | struct Ty; | ||
| ^^^^^^^^^ consider implementing `Clone` for this type | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0507`. |
16 changes: 16 additions & 0 deletions
16
tests/ui/impl-trait/precise-capturing/rpitit-captures-more-method-lifetimes.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Make sure we don't ICE when an RPITIT captures more method args than the | ||
// trait definition, which is not allowed. Due to the default lifetime capture | ||
// rules of RPITITs, this is only doable if we use precise capturing. | ||
|
||
pub trait Foo { | ||
fn bar<'tr: 'tr>(&'tr mut self) -> impl Sized + use<Self>; | ||
//~^ ERROR `use<...>` precise capturing syntax is currently not allowed in return-position `impl Trait` in traits | ||
} | ||
|
||
impl Foo for () { | ||
fn bar<'im: 'im>(&'im mut self) -> impl Sized + 'im {} | ||
//~^ ERROR return type captures more lifetimes than trait definition | ||
//~| WARN impl trait in impl method signature does not match trait method signature | ||
} | ||
|
||
fn main() {} |
42 changes: 42 additions & 0 deletions
42
tests/ui/impl-trait/precise-capturing/rpitit-captures-more-method-lifetimes.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
error: `use<...>` precise capturing syntax is currently not allowed in return-position `impl Trait` in traits | ||
--> $DIR/rpitit-captures-more-method-lifetimes.rs:6:53 | ||
| | ||
LL | fn bar<'tr: 'tr>(&'tr mut self) -> impl Sized + use<Self>; | ||
| ^^^^^^^^^ | ||
| | ||
= note: currently, return-position `impl Trait` in traits and trait implementations capture all lifetimes in scope | ||
|
||
error: return type captures more lifetimes than trait definition | ||
--> $DIR/rpitit-captures-more-method-lifetimes.rs:11:40 | ||
| | ||
LL | fn bar<'im: 'im>(&'im mut self) -> impl Sized + 'im {} | ||
| --- ^^^^^^^^^^^^^^^^ | ||
| | | ||
| this lifetime was captured | ||
| | ||
note: hidden type must only reference lifetimes captured by this impl trait | ||
--> $DIR/rpitit-captures-more-method-lifetimes.rs:6:40 | ||
| | ||
LL | fn bar<'tr: 'tr>(&'tr mut self) -> impl Sized + use<Self>; | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: hidden type inferred to be `impl Sized + 'im` | ||
|
||
warning: impl trait in impl method signature does not match trait method signature | ||
--> $DIR/rpitit-captures-more-method-lifetimes.rs:11:40 | ||
| | ||
LL | fn bar<'tr: 'tr>(&'tr mut self) -> impl Sized + use<Self>; | ||
| ---------------------- return type from trait method defined here | ||
... | ||
LL | fn bar<'im: 'im>(&'im mut self) -> impl Sized + 'im {} | ||
| ^^^^^^^^^^^^^^^^ | ||
| | ||
= note: add `#[allow(refining_impl_trait)]` if it is intended for this to be part of the public API of this crate | ||
= note: we are soliciting feedback, see issue #121718 <https://github.com/rust-lang/rust/issues/121718> for more information | ||
= note: `#[warn(refining_impl_trait_reachable)]` on by default | ||
help: replace the return type so that it matches the trait | ||
| | ||
LL | fn bar<'im: 'im>(&'im mut self) -> impl Sized {} | ||
| ~~~~~~~~~~ | ||
|
||
error: aborting due to 2 previous errors; 1 warning emitted | ||
|