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#118882 - compiler-errors:normalized-sig-wf, r…
…=<try> Check normalized call signature for WF in mir typeck Unfortunately we don't check that the built-in implementations for `Fn*` traits are actually well-formed in the same way that we do for user-provided impls. Essentially, when checking a call terminator, we end up with a signature that references an unnormalized `<[closure] as FnOnce<...>>::Output` in its output. That output type, due to the built-in impl, doesn't follow the expected rule that `WF(ty)` implies `WF(normalized(ty))`. We fix this by also checking the normalized signature here. **See** boxy's detailed and useful explanation comment which explains this in more detail: rust-lang#114936 (comment) Fixes rust-lang#114936 Fixes rust-lang#118876 r? types cc `@BoxyUwU` `@lcnr`
- Loading branch information
Showing
7 changed files
with
134 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// <https://github.com/rust-lang/rust/issues/114936> | ||
fn whoops( | ||
s: String, | ||
f: impl for<'s> FnOnce(&'s str) -> (&'static str, [&'static &'s (); 0]), | ||
) -> &'static str | ||
{ | ||
f(&s).0 | ||
//~^ ERROR `s` does not live long enough | ||
} | ||
|
||
// <https://github.com/rust-lang/rust/issues/118876> | ||
fn extend<T>(input: &T) -> &'static T { | ||
struct Bounded<'a, 'b: 'static, T>(&'a T, [&'b (); 0]); | ||
let n: Box<dyn FnOnce(&T) -> Bounded<'static, '_, T>> = Box::new(|x| Bounded(x, [])); | ||
n(input).0 | ||
//~^ ERROR borrowed data escapes outside of function | ||
} | ||
|
||
// <https://github.com/rust-lang/rust/issues/118876> | ||
fn extend_mut<'a, T>(input: &'a mut T) -> &'static mut T { | ||
struct Bounded<'a, 'b: 'static, T>(&'a mut T, [&'b (); 0]); | ||
let mut n: Box<dyn FnMut(&mut T) -> Bounded<'static, '_, T>> = Box::new(|x| Bounded(x, [])); | ||
n(input).0 | ||
//~^ ERROR borrowed data escapes outside of function | ||
} | ||
|
||
fn main() {} |
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,47 @@ | ||
error[E0597]: `s` does not live long enough | ||
--> $DIR/check-normalized-sig-for-wf.rs:7:7 | ||
| | ||
LL | s: String, | ||
| - binding `s` declared here | ||
... | ||
LL | f(&s).0 | ||
| --^^- | ||
| | | | ||
| | borrowed value does not live long enough | ||
| argument requires that `s` is borrowed for `'static` | ||
LL | | ||
LL | } | ||
| - `s` dropped here while still borrowed | ||
|
||
error[E0521]: borrowed data escapes outside of function | ||
--> $DIR/check-normalized-sig-for-wf.rs:15:5 | ||
| | ||
LL | fn extend<T>(input: &T) -> &'static T { | ||
| ----- - let's call the lifetime of this reference `'1` | ||
| | | ||
| `input` is a reference that is only valid in the function body | ||
... | ||
LL | n(input).0 | ||
| ^^^^^^^^ | ||
| | | ||
| `input` escapes the function body here | ||
| argument requires that `'1` must outlive `'static` | ||
|
||
error[E0521]: borrowed data escapes outside of function | ||
--> $DIR/check-normalized-sig-for-wf.rs:23:5 | ||
| | ||
LL | fn extend_mut<'a, T>(input: &'a mut T) -> &'static mut T { | ||
| -- ----- `input` is a reference that is only valid in the function body | ||
| | | ||
| lifetime `'a` defined here | ||
... | ||
LL | n(input).0 | ||
| ^^^^^^^^ | ||
| | | ||
| `input` escapes the function body here | ||
| argument requires that `'a` must outlive `'static` | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
Some errors have detailed explanations: E0521, E0597. | ||
For more information about an error, try `rustc --explain E0521`. |
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