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

Rustc failed to compile code due to overflowing trait bound #78982

Open
weiznich opened this issue Nov 12, 2020 · 0 comments
Open

Rustc failed to compile code due to overflowing trait bound #78982

weiznich opened this issue Nov 12, 2020 · 0 comments
Labels
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. T-types Relevant to the types team, which will review and decide on the PR/issue.

Comments

@weiznich
Copy link
Contributor

The following code triggers a endless type recursion in rustc while the underlying trait bounds on calling assert_sql_conversion are trivially satisfied.

use std::marker::PhantomData;

struct ValuesClause<T, Tab> {
    _marker: PhantomData<(T, Tab)>,
}

struct Eq<T, U>(PhantomData<(T, U)>);

trait Insertable<T> {
    type Values;
}

impl<T, U> Insertable<T> for Eq<T, U> {
    type Values = ValuesClause<U, T>;
}

impl<'a, T, U> Insertable<T> for &'a Eq<T, U>
where
    Eq<T, &'a U>: Insertable<T>,
{
    type Values = <Eq<T, &'a U> as Insertable<T>>::Values;
}

impl<A, SA, Tab> Insertable<Tab> for (A,)
where
    A: Insertable<Tab, Values = ValuesClause<(SA,), Tab>>,
{
    type Values = ValuesClause<SA, Tab>;
}

impl<'a, A, Tab> Insertable<Tab> for &'a (A,)
where
    (&'a A,): Insertable<Tab>,
{
    type Values = <(&'a A,) as Insertable<Tab>>::Values;
}

struct Table;

struct Foo {
    a: i32,
    b: String,
}

impl<'a> Insertable<Table> for &'a Foo {
    type Values = (Eq<Table, &'a i32>, Eq<Table, &'a String>);
}

fn assert_sql_conversion<'a, T, R>(_r: &'a R)
where
    &'a R: Insertable<T>,
{
    todo!()
}

fn main() {
    assert_sql_conversion(&Foo {
        a: 42,
        b: String::from("foo"),
    });
}

(Playground, Note that this is a minimized example starting from the original diesel code, therefore some things there are just simplified to reproduce the issue)

Error message:

error[E0275]: overflow evaluating the requirement `&Eq<_, _>: Insertable<_>`
  --> src/main.rs:57:5
   |
49 | fn assert_sql_conversion<'a, T, R>(_r: &'a R)
   |    --------------------- required by a bound in this
50 | where
51 |     &'a R: Insertable<T>,
   |            ------------- required by this bound in `assert_sql_conversion`
...
57 |     assert_sql_conversion(&Foo {
   |     ^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider adding a `#![recursion_limit="256"]` attribute to your crate (`playground`)
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&Eq<_, _>,)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(Eq<_, _>,)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(Eq<_, _>,),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((Eq<_, _>,),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((Eq<_, _>,),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((Eq<_, _>,),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((Eq<_, _>,),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((Eq<_, _>,),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((Eq<_, _>,),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((Eq<_, _>,),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((Eq<_, _>,),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((Eq<_, _>,),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((Eq<_, _>,),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((Eq<_, _>,),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((Eq<_, _>,),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((Eq<_, _>,),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((Eq<_, _>,),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((Eq<_, _>,),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((((Eq<_, _>,),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((((Eq<_, _>,),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((((Eq<_, _>,),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((((Eq<_, _>,),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((((((Eq<_, _>,),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((((((Eq<_, _>,),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((((((Eq<_, _>,),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((((((Eq<_, _>,),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((((((((Eq<_, _>,),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((((((((Eq<_, _>,),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&(((((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&((((((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `(&((((((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),),),),),)`
   = note: required because of the requirements on the impl of `Insertable<_>` for `&(((((((((((((((((((((((((Eq<_, _>,),),),),),),),),),),),),),),),),),),),),),),),),)`
@jonas-schievink jonas-schievink added A-trait-system Area: Trait system C-bug Category: This is a bug. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Nov 12, 2020
@fmease fmease added T-types Relevant to the types team, which will review and decide on the PR/issue. fixed-by-next-solver Fixed by the next-generation trait solver, `-Znext-solver`. labels Dec 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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. T-types Relevant to the types team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

3 participants