-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enforce non-lifetime-binders in supertrait preds are not object safe #108842
Merged
bors
merged 1 commit into
rust-lang:master
from
compiler-errors:non_lifetime_binders-object-safe
Mar 21, 2023
Merged
Changes from all commits
Commits
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
24 changes: 24 additions & 0 deletions
24
tests/ui/traits/non_lifetime_binders/supertrait-object-safety.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,24 @@ | ||
#![feature(non_lifetime_binders)] | ||
//~^ WARN the feature `non_lifetime_binders` is incomplete | ||
|
||
trait Foo: for<T> Bar<T> {} | ||
|
||
trait Bar<T: ?Sized> { | ||
fn method(&self) {} | ||
} | ||
|
||
fn needs_bar(x: &(impl Bar<i32> + ?Sized)) { | ||
x.method(); | ||
} | ||
|
||
impl Foo for () {} | ||
|
||
impl<T: ?Sized> Bar<T> for () {} | ||
|
||
fn main() { | ||
let x: &dyn Foo = &(); | ||
//~^ ERROR the trait `Foo` cannot be made into an object | ||
//~| ERROR the trait `Foo` cannot be made into an object | ||
needs_bar(x); | ||
//~^ ERROR the trait `Foo` cannot be made into an object | ||
} |
56 changes: 56 additions & 0 deletions
56
tests/ui/traits/non_lifetime_binders/supertrait-object-safety.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,56 @@ | ||
warning: the feature `non_lifetime_binders` is incomplete and may not be safe to use and/or cause compiler crashes | ||
--> $DIR/supertrait-object-safety.rs:1:12 | ||
| | ||
LL | #![feature(non_lifetime_binders)] | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information | ||
= note: `#[warn(incomplete_features)]` on by default | ||
|
||
error[E0038]: the trait `Foo` cannot be made into an object | ||
--> $DIR/supertrait-object-safety.rs:19:23 | ||
| | ||
LL | let x: &dyn Foo = &(); | ||
| ^^^ `Foo` cannot be made into an object | ||
| | ||
note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety> | ||
--> $DIR/supertrait-object-safety.rs:4:12 | ||
| | ||
LL | trait Foo: for<T> Bar<T> {} | ||
| --- ^^^^^^^^^^^^^ ...because where clause cannot reference non-lifetime `for<...>` variables | ||
| | | ||
| this trait cannot be made into an object... | ||
= note: required for `&()` to implement `CoerceUnsized<&dyn Foo>` | ||
= note: required by cast to type `&dyn Foo` | ||
|
||
error[E0038]: the trait `Foo` cannot be made into an object | ||
--> $DIR/supertrait-object-safety.rs:19:12 | ||
| | ||
LL | let x: &dyn Foo = &(); | ||
| ^^^^^^^^ `Foo` cannot be made into an object | ||
| | ||
note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety> | ||
--> $DIR/supertrait-object-safety.rs:4:12 | ||
| | ||
LL | trait Foo: for<T> Bar<T> {} | ||
| --- ^^^^^^^^^^^^^ ...because where clause cannot reference non-lifetime `for<...>` variables | ||
| | | ||
| this trait cannot be made into an object... | ||
|
||
error[E0038]: the trait `Foo` cannot be made into an object | ||
--> $DIR/supertrait-object-safety.rs:22:5 | ||
| | ||
LL | needs_bar(x); | ||
| ^^^^^^^^^ `Foo` cannot be made into an object | ||
| | ||
note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety> | ||
--> $DIR/supertrait-object-safety.rs:4:12 | ||
| | ||
LL | trait Foo: for<T> Bar<T> {} | ||
| --- ^^^^^^^^^^^^^ ...because where clause cannot reference non-lifetime `for<...>` variables | ||
| | | ||
| this trait cannot be made into an object... | ||
|
||
error: aborting due to 3 previous errors; 1 warning emitted | ||
|
||
For more information about this error, try `rustc --explain E0038`. |
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.
Perf: I guess we could bail early here if
!tcx.features().non_lifetime_binders
...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.
Seems reasonable to me.