forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
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 rust-lang#128829 - matthiaskrgr:rollup-kbkjllg, r=matth…
…iaskrgr Rollup of 7 pull requests Successful merges: - rust-lang#128306 (Update NonNull::align_offset quarantees) - rust-lang#128612 (Make `validate_mir` ensure the final MIR for all bodies) - rust-lang#128648 (Add regression test) - rust-lang#128791 (Don't implement `AsyncFn` for `FnDef`/`FnPtr` that wouldnt implement `Fn`) - rust-lang#128795 (Update E0517 message to reflect RFC 2195.) - rust-lang#128825 (rm `declared_features` field in resolver) - rust-lang#128826 (Only suggest `#[allow]` for `--warn` and `--deny` lint level flags) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
22 changed files
with
199 additions
and
52 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
//@ edition: 2021 | ||
|
||
#![feature(async_closure, target_feature_11)] | ||
// `target_feature_11` just to test safe functions w/ target features. | ||
|
||
use std::pin::Pin; | ||
use std::future::Future; | ||
|
||
unsafe extern "Rust" { | ||
pub unsafe fn unsafety() -> Pin<Box<dyn Future<Output = ()> + 'static>>; | ||
} | ||
|
||
unsafe extern "C" { | ||
pub safe fn abi() -> Pin<Box<dyn Future<Output = ()> + 'static>>; | ||
} | ||
|
||
|
||
#[target_feature(enable = "sse2")] | ||
fn target_feature() -> Pin<Box<dyn Future<Output = ()> + 'static>> { todo!() } | ||
|
||
fn test(f: impl async Fn()) {} | ||
|
||
fn main() { | ||
test(unsafety); //~ ERROR the trait bound | ||
test(abi); //~ ERROR the trait bound | ||
test(target_feature); //~ ERROR the trait bound | ||
} |
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,45 @@ | ||
error[E0277]: the trait bound `unsafe fn() -> Pin<Box<(dyn Future<Output = ()> + 'static)>> {unsafety}: AsyncFn<()>` is not satisfied | ||
--> $DIR/fn-exception.rs:24:10 | ||
| | ||
LL | test(unsafety); | ||
| ---- ^^^^^^^^ the trait `AsyncFn<()>` is not implemented for fn item `unsafe fn() -> Pin<Box<(dyn Future<Output = ()> + 'static)>> {unsafety}` | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
note: required by a bound in `test` | ||
--> $DIR/fn-exception.rs:21:17 | ||
| | ||
LL | fn test(f: impl async Fn()) {} | ||
| ^^^^^^^^^^ required by this bound in `test` | ||
|
||
error[E0277]: the trait bound `extern "C" fn() -> Pin<Box<(dyn Future<Output = ()> + 'static)>> {abi}: AsyncFn<()>` is not satisfied | ||
--> $DIR/fn-exception.rs:25:10 | ||
| | ||
LL | test(abi); | ||
| ---- ^^^ the trait `AsyncFn<()>` is not implemented for fn item `extern "C" fn() -> Pin<Box<(dyn Future<Output = ()> + 'static)>> {abi}` | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
note: required by a bound in `test` | ||
--> $DIR/fn-exception.rs:21:17 | ||
| | ||
LL | fn test(f: impl async Fn()) {} | ||
| ^^^^^^^^^^ required by this bound in `test` | ||
|
||
error[E0277]: the trait bound `fn() -> Pin<Box<(dyn Future<Output = ()> + 'static)>> {target_feature}: AsyncFn<()>` is not satisfied | ||
--> $DIR/fn-exception.rs:26:10 | ||
| | ||
LL | test(target_feature); | ||
| ---- ^^^^^^^^^^^^^^ the trait `AsyncFn<()>` is not implemented for fn item `fn() -> Pin<Box<(dyn Future<Output = ()> + 'static)>> {target_feature}` | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
note: required by a bound in `test` | ||
--> $DIR/fn-exception.rs:21:17 | ||
| | ||
LL | fn test(f: impl async Fn()) {} | ||
| ^^^^^^^^^^ required by this bound in `test` | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0277`. |
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 @@ | ||
// Test for ICE: cannot convert ReLateParam to a region vid | ||
// https://github.com/rust-lang/rust/issues/125873 | ||
|
||
#![feature(closure_lifetime_binder)] | ||
fn foo() { | ||
let a = for<'a> |b: &'a ()| -> &'a () { | ||
const { | ||
let awd = (); | ||
let _: &'a () = &awd; | ||
//~^ `awd` does not live long enough | ||
}; | ||
b | ||
}; | ||
} | ||
|
||
fn main() {} |
19 changes: 19 additions & 0 deletions
19
tests/ui/inline-const/using-late-bound-from-closure.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,19 @@ | ||
error[E0597]: `awd` does not live long enough | ||
--> $DIR/using-late-bound-from-closure.rs:9:29 | ||
| | ||
LL | let a = for<'a> |b: &'a ()| -> &'a () { | ||
| -- lifetime `'a` defined here | ||
LL | const { | ||
LL | let awd = (); | ||
| --- binding `awd` declared here | ||
LL | let _: &'a () = &awd; | ||
| ------ ^^^^ borrowed value does not live long enough | ||
| | | ||
| type annotation requires that `awd` is borrowed for `'a` | ||
LL | | ||
LL | }; | ||
| - `awd` dropped here while still borrowed | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0597`. |
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
Oops, something went wrong.