-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
More DefineOpaqueTypes::Yes #123794
Merged
Merged
More DefineOpaqueTypes::Yes #123794
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
//! Test that coercing between function items of the same function, | ||
//! but with different generic args succeeds in typeck, but then fails | ||
//! in borrowck when the lifetimes can't actually be merged. | ||
|
||
fn foo<T>(t: T) -> T { | ||
t | ||
} | ||
|
||
fn f<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
let mut x = foo::<&'a ()>; //~ ERROR: lifetime may not live long enough | ||
x = foo::<&'b ()>; //~ ERROR: lifetime may not live long enough | ||
x = foo::<&'c ()>; | ||
x(a); | ||
x(b); | ||
x(c); | ||
} | ||
|
||
fn g<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
let x = foo::<&'c ()>; | ||
let _: &'c () = x(a); //~ ERROR lifetime may not live long enough | ||
} | ||
|
||
fn h<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
let x = foo::<&'a ()>; | ||
let _: &'a () = x(c); | ||
} | ||
|
||
fn i<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
let mut x = foo::<&'c ()>; | ||
x = foo::<&'b ()>; //~ ERROR lifetime may not live long enough | ||
x = foo::<&'a ()>; //~ ERROR lifetime may not live long enough | ||
x(a); | ||
x(b); | ||
x(c); | ||
} | ||
|
||
fn j<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
let x = match true { | ||
true => foo::<&'b ()>, //~ ERROR lifetime may not live long enough | ||
false => foo::<&'a ()>, //~ ERROR lifetime may not live long enough | ||
}; | ||
x(a); | ||
x(b); | ||
x(c); | ||
} | ||
|
||
fn k<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
let x = match true { | ||
true => foo::<&'c ()>, | ||
false => foo::<&'a ()>, //~ ERROR lifetime may not live long enough | ||
}; | ||
|
||
x(a); | ||
x(b); //~ ERROR lifetime may not live long enough | ||
x(c); | ||
} | ||
|
||
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,154 @@ | ||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:10:17 | ||
| | ||
LL | fn f<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'b` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
LL | let mut x = foo::<&'a ()>; | ||
| ^^^^^^^^^^^^^ assignment requires that `'a` must outlive `'b` | ||
| | ||
= help: consider adding the following bound: `'a: 'b` | ||
= note: requirement occurs because of a function pointer to `foo` | ||
= note: the function `foo` is invariant over the parameter `T` | ||
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance | ||
|
||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:11:5 | ||
| | ||
LL | fn f<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'b` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
LL | let mut x = foo::<&'a ()>; | ||
LL | x = foo::<&'b ()>; | ||
| ^^^^^^^^^^^^^^^^^ assignment requires that `'b` must outlive `'a` | ||
| | ||
= help: consider adding the following bound: `'b: 'a` | ||
= note: requirement occurs because of a function pointer to `foo` | ||
= note: the function `foo` is invariant over the parameter `T` | ||
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance | ||
|
||
help: `'a` and `'b` must be the same: replace one with the other | ||
|
||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:20:12 | ||
| | ||
LL | fn g<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'c` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
LL | let x = foo::<&'c ()>; | ||
LL | let _: &'c () = x(a); | ||
| ^^^^^^ type annotation requires that `'a` must outlive `'c` | ||
| | ||
= help: consider adding the following bound: `'a: 'c` | ||
|
||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:30:5 | ||
| | ||
LL | fn i<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'b` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
LL | let mut x = foo::<&'c ()>; | ||
LL | x = foo::<&'b ()>; | ||
| ^^^^^^^^^^^^^^^^^ assignment requires that `'b` must outlive `'a` | ||
| | ||
= help: consider adding the following bound: `'b: 'a` | ||
= note: requirement occurs because of a function pointer to `foo` | ||
= note: the function `foo` is invariant over the parameter `T` | ||
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance | ||
|
||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:31:5 | ||
| | ||
LL | fn i<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'b` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
... | ||
LL | x = foo::<&'a ()>; | ||
| ^^^^^^^^^^^^^^^^^ assignment requires that `'a` must outlive `'b` | ||
| | ||
= help: consider adding the following bound: `'a: 'b` | ||
= note: requirement occurs because of a function pointer to `foo` | ||
= note: the function `foo` is invariant over the parameter `T` | ||
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance | ||
|
||
help: `'a` and `'b` must be the same: replace one with the other | ||
| | ||
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no` | ||
|
||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:39:17 | ||
| | ||
LL | fn j<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'b` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
LL | let x = match true { | ||
LL | true => foo::<&'b ()>, | ||
| ^^^^^^^^^^^^^ assignment requires that `'b` must outlive `'a` | ||
| | ||
= help: consider adding the following bound: `'b: 'a` | ||
= note: requirement occurs because of a function pointer to `foo` | ||
= note: the function `foo` is invariant over the parameter `T` | ||
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance | ||
|
||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:40:18 | ||
| | ||
LL | fn j<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'b` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
... | ||
LL | false => foo::<&'a ()>, | ||
| ^^^^^^^^^^^^^ assignment requires that `'a` must outlive `'b` | ||
| | ||
= help: consider adding the following bound: `'a: 'b` | ||
= note: requirement occurs because of a function pointer to `foo` | ||
= note: the function `foo` is invariant over the parameter `T` | ||
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance | ||
|
||
help: `'a` and `'b` must be the same: replace one with the other | ||
| | ||
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no` | ||
|
||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:50:18 | ||
| | ||
LL | fn k<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'c` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
... | ||
LL | false => foo::<&'a ()>, | ||
| ^^^^^^^^^^^^^ assignment requires that `'a` must outlive `'c` | ||
| | ||
= help: consider adding the following bound: `'a: 'c` | ||
= note: requirement occurs because of a function pointer to `foo` | ||
= note: the function `foo` is invariant over the parameter `T` | ||
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance | ||
|
||
error: lifetime may not live long enough | ||
--> $DIR/fn_def_coercion.rs:54:5 | ||
| | ||
LL | fn k<'a, 'b, 'c: 'a + 'b>(a: &'a (), b: &'b (), c: &'c ()) { | ||
| -- -- lifetime `'b` defined here | ||
| | | ||
| lifetime `'a` defined here | ||
... | ||
LL | x(b); | ||
| ^^^^ argument requires that `'b` must outlive `'a` | ||
| | ||
= help: consider adding the following bound: `'b: 'a` | ||
|
||
help: the following changes may resolve your lifetime errors | ||
| | ||
= help: add bound `'a: 'c` | ||
= help: add bound `'b: 'a` | ||
|
||
error: aborting due to 9 previous errors | ||
|
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,69 @@ | ||
//! Test that coercing between function items of the same function, | ||
//! but with different generic args works. | ||
|
||
//@check-pass | ||
|
||
#![feature(type_alias_impl_trait)] | ||
|
||
fn foo<T>(t: T) -> T { | ||
t | ||
} | ||
|
||
type F = impl Sized; | ||
|
||
fn f(a: F) { | ||
let mut x = foo::<F>; | ||
x = foo::<()>; | ||
x(a); | ||
x(()); | ||
} | ||
|
||
type G = impl Sized; | ||
|
||
fn g(a: G) { | ||
let x = foo::<()>; | ||
let _: () = x(a); | ||
} | ||
|
||
type H = impl Sized; | ||
|
||
fn h(a: H) { | ||
let x = foo::<H>; | ||
let _: H = x(()); | ||
} | ||
|
||
type I = impl Sized; | ||
|
||
fn i(a: I) { | ||
let mut x = foo::<()>; | ||
x = foo::<I>; | ||
x(a); | ||
x(()); | ||
} | ||
|
||
type J = impl Sized; | ||
|
||
fn j(a: J) { | ||
let x = match true { | ||
true => foo::<J>, | ||
false => foo::<()>, | ||
}; | ||
x(a); | ||
x(()); | ||
} | ||
|
||
fn k() -> impl Sized { | ||
fn bind<T, F: FnOnce(T) -> T>(_: T, f: F) -> F { | ||
f | ||
} | ||
let x = match true { | ||
true => { | ||
let f = foo; | ||
bind(k(), f) | ||
} | ||
false => foo::<()>, | ||
}; | ||
todo!() | ||
} | ||
|
||
fn main() {} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DefineOpaqueTypes::Yes
inside of acommit_if_ok
likely means that this can cause type inference breakage.When coercing function definitions we may have previously used the
lub
further down as thislub
here failed. This would have then caused us to return a function pointer (i think), whereas we now return anFnDef
.I would like to see a crater run here to allow us to more eagerly detect any regressions from it