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

Unable to put trait bound on associated type in generic method in trait with its own associated type #116377

Closed
jarimayenburg opened this issue Oct 3, 2023 · 1 comment
Labels
A-associated-items Area: Associated items (types, constants & functions) A-trait-system Area: Trait system C-bug Category: This is a bug. fixed-by-next-solver Fixed by the next-generation trait solver, `-Znext-solver`. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@jarimayenburg
Copy link

I'm trying to get the following to compile.

pub trait MyTryFrom<T> {
    type Error;
}

pub trait Foo {
    type FooType;

    fn foo<E>(x: Self::FooType) -> E
    where
        E: MyTryFrom<Self::FooType>,
        E::Error: Sized;
}

struct MyFoo;

impl Foo for MyFoo {
    type FooType = MyFooType;

    fn foo<E>(x: Self::FooType) -> E
    where
        E: MyTryFrom<Self::FooType>,
        E::Error: Sized,
    {
        todo!()
    }
}

struct MyFooType;

This is a minimal example that illustrates the issue. The compiler gives me the following error, asking me to further restrict E with the exact same bound.

   Compiling playground v0.0.1 (/playground)
error[E0277]: the trait bound `E: MyTryFrom<MyFooType>` is not satisfied
  --> src/lib.rs:19:5
   |
19 | /     fn foo<E>(x: Self::FooType) -> E
20 | |     where
21 | |         E: MyTryFrom<Self::FooType>,
22 | |         E::Error: Sized,
   | |________________________^ the trait `MyTryFrom<MyFooType>` is not implemented for `E`
   |
help: consider further restricting this bound
   |
21 |         E: MyTryFrom<Self::FooType> + MyTryFrom<MyFooType>,
   |                                     ++++++++++++++++++++++

error[E0277]: the trait bound `E: MyTryFrom<MyFooType>` is not satisfied
  --> src/lib.rs:19:8
   |
19 |     fn foo<E>(x: Self::FooType) -> E
   |        ^^^ the trait `MyTryFrom<MyFooType>` is not implemented for `E`
   |
help: consider further restricting this bound
   |
21 |         E: MyTryFrom<Self::FooType> + MyTryFrom<MyFooType>,
   |                                     ++++++++++++++++++++++

For more information about this error, try `rustc --explain E0277`.
error: could not compile `playground` (lib) due to 2 previous errors

This snippet compiles just fine if I remove the E::Error: Sized bound.

Meta

I've tried this on stable (1.72.1) and nightly (1.75.0-nightly)

rustc --version --verbose:

rustc 1.72.1 (d5c2e9c34 2023-09-13)
binary: rustc
commit-hash: d5c2e9c342b358556da91d61ed4133f6f50fc0c3
commit-date: 2023-09-13
host: x86_64-unknown-linux-gnu
release: 1.72.1
LLVM version: 16.0.5
@jarimayenburg jarimayenburg added the C-bug Category: This is a bug. label Oct 3, 2023
@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Oct 3, 2023
@jarimayenburg jarimayenburg changed the title Unable to put trait bound on associated type in generic method of trait with its own associated type Unable to put trait bound on associated type in generic method in trait with its own associated type Oct 3, 2023
@fmease fmease added A-trait-system Area: Trait system A-associated-items Area: Associated items (types, constants & functions) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. fixed-by-next-solver Fixed by the next-generation trait solver, `-Znext-solver`. and removed needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Oct 4, 2023
@lcnr
Copy link
Contributor

lcnr commented Nov 13, 2023

closing as duplicate of #41118, still thanks for opening this issue 👍

@lcnr lcnr closed this as completed Nov 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-associated-items Area: Associated items (types, constants & functions) A-trait-system Area: Trait system C-bug Category: This is a bug. fixed-by-next-solver Fixed by the next-generation trait solver, `-Znext-solver`. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

4 participants