Skip to content
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

Self as generic trait parameter is not properly ignored by Self: Sized bound #137053

Closed
izagawd opened this issue Feb 15, 2025 · 2 comments · Fixed by #137097
Closed

Self as generic trait parameter is not properly ignored by Self: Sized bound #137053

izagawd opened this issue Feb 15, 2025 · 2 comments · Fixed by #137097
Assignees
Labels
A-dyn-compatibility Area: Dyn compatibility (formerly: object safety) A-trait-objects Area: trait objects, vtable layout C-bug Category: This is a bug. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@izagawd
Copy link

izagawd commented Feb 15, 2025

This Compiles

struct Foo;
trait Bar{
    fn some_method(&self) -> impl SomeTrait where Self: Sized;
}
trait SomeTrait{}
fn main() {
    let obj : &dyn Bar;
}

This Also Compiles

struct Foo;
trait Bar{
    fn some_method(&self) -> &dyn SomeTrait<Self> where Self: Sized;
}
trait SomeTrait<T>{}
fn main() {
    let obj : &dyn Bar;
}

But This..

struct Foo;
trait Bar{
    fn some_method(&self) -> impl SomeTrait<Self> where Self: Sized;
}
trait SomeTrait<T>{}
fn main() {
    let obj : &dyn Bar;
}

Show This Error output

error[E0038]: the trait `Bar` is not dyn compatible
 --> src\main.rs:7:15
  |
7 |     let obj : &dyn Bar;
  |               ^^^^^^^^ `Bar` is not dyn compatible
  |
note: for a trait to be dyn compatible it needs to allow building a vtable
      for more information, visit <https://doc.rust-lang.org/reference/items/traits.html#dyn-compatibility>
 --> src\main.rs:3:35
  |
2 | trait Bar{
  |       --- this trait is not dyn compatible...
3 |     fn some_method(&self) -> impl SomeTrait<Self> where Self: Sized;
  |                                   ^^^^^^^^^^^^^^^ ...because it uses `Self` as a type parameter

Even though Self : Sized. This should be valid in rust.

version:
rustc 1.86.0-nightly (a567209 2025-02-13)

@izagawd izagawd added C-bug Category: This is a bug. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Feb 15, 2025
@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Feb 15, 2025
@izagawd izagawd changed the title Cannot return impl Trait<Self> despite adding constraint "where Self : Sized" Self as generic trait parameter is not properly ignored by Self: Sized bound Feb 15, 2025
@konnorandrews
Copy link

@rustbot modify labels: -I-ICE

@rustbot rustbot removed the I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ label Feb 15, 2025
@konnorandrews
Copy link

Here is a smaller example without RPITIT.

struct X(&'static dyn A);

trait A {
    type T: B<Self> where Self: Sized;
}

trait B<T> {}
...
3 | trait A {
  |       - this trait cannot be made into an object...
4 |     type T: B<Self> where Self: Sized;
  |             ^^^^^^^ ...because it uses `Self` as a type parameter

@fmease fmease added A-dyn-compatibility Area: Dyn compatibility (formerly: object safety) A-trait-objects Area: trait objects, vtable layout and removed needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Feb 15, 2025
@compiler-errors compiler-errors self-assigned this Feb 15, 2025
@bors bors closed this as completed in 7884e17 Feb 16, 2025
rust-timer added a commit to rust-lang-ci/rust that referenced this issue Feb 16, 2025
Rollup merge of rust-lang#137097 - compiler-errors:sized-bound-self, r=oli-obk

Ignore Self in bounds check for associated types with Self:Sized

Fixes rust-lang#137053

This is morally a fix of rust-lang#112319, since the `Self: Sized` check was just missing here.

r? oli-obk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-dyn-compatibility Area: Dyn compatibility (formerly: object safety) A-trait-objects Area: trait objects, vtable layout C-bug Category: This is a bug. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants