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

Matching of Self doesn't take lifetime parameters into account #15517

Closed
pcwalton opened this issue Jul 8, 2014 · 6 comments · Fixed by #15991
Closed

Matching of Self doesn't take lifetime parameters into account #15517

pcwalton opened this issue Jul 8, 2014 · 6 comments · Fixed by #15991
Assignees
Labels
A-lifetimes Area: Lifetimes / regions A-trait-system Area: Trait system A-type-system Area: Type system
Milestone

Comments

@pcwalton
Copy link
Contributor

pcwalton commented Jul 8, 2014

The following code compiles:

struct Foo<'a,'b> {
    x: &'a int,
    y: &'b int,
}

trait Tr {
    fn foo(x: Self) {}
}

impl<'a,'b> Tr for Foo<'a,'b> {
    fn foo(x: Foo<'b,'a>) {} // <-- bad
}

fn main(){}

Nominating for 1.0, P-backcompat-lang. I may well just fix this along with #14022, since the solution is likely going to be similar to what @nikomatsakis pointed out, but I want to get it on the radar.

@pcwalton
Copy link
Contributor Author

pcwalton commented Jul 8, 2014

Hmm, OK. So the code does attempt to handle this, but I don't know if it is handled in the right way. Specifically, it creates fresh region variables for each region and checks to see whether they unify. The trouble is that Foo<'a,'b> does unify with Foo<'b,'a>—it unifies if and only if 'a and 'b are the same region. But this is precisely what @nikomatsakis claimed to be a problem in #14022. So I'm not sure what the right thing is to do here.

@pcwalton
Copy link
Contributor Author

pcwalton commented Jul 8, 2014

I'm going to assign to @nikomatsakis because I'm blocked on his opinion on what to do here.

@pnkfelix
Copy link
Member

Assigning P-backcompat-lang, 1.0.

@pnkfelix pnkfelix added this to the 1.0 milestone Jul 10, 2014
@pcwalton
Copy link
Contributor Author

Right thing to do is to use ReSkolemized.

@nikomatsakis
Copy link
Contributor

Argh. The right fix is to substitute some skolemized lifetimes in for the early bound regions before doing the unification rather than fresh variables.

@nikomatsakis
Copy link
Contributor

Actually I think the problem is that we're just not calling resolve_regions_and_report_errors on the inference context

pcwalton added a commit to pcwalton/rust that referenced this issue Jul 25, 2014
matching.

This breaks code like:

    struct Foo<'a,'b> {
        x: &'a int,
        y: &'b int,
    }

    trait Tr {
        fn foo(x: Self) {}
    }

    impl<'a,'b> Tr for Foo<'a,'b> {
        fn foo(x: Foo<'b,'a>) {} // <-- bad
    }

Change this code to not contain a lifetime mismatch error. For example:

    struct Foo<'a,'b> {
        x: &'a int,
        y: &'b int,
    }

    trait Tr {
        fn foo(x: Self) {}
    }

    impl<'a,'b> Tr for Foo<'a,'b> {
        fn foo(x: Foo<'a,'b>) {} // OK
    }

Closes rust-lang#15517.

[breaking-change]
bors added a commit that referenced this issue Jul 26, 2014
…g, r=alexcrichton

matching.

This breaks code like:

    struct Foo<'a,'b> {
        x: &'a int,
        y: &'b int,
    }

    trait Tr {
        fn foo(x: Self) {}
    }

    impl<'a,'b> Tr for Foo<'a,'b> {
        fn foo(x: Foo<'b,'a>) {} // <-- bad
    }

Change this code to not contain a lifetime mismatch error. For example:

    struct Foo<'a,'b> {
        x: &'a int,
        y: &'b int,
    }

    trait Tr {
        fn foo(x: Self) {}
    }

    impl<'a,'b> Tr for Foo<'a,'b> {
        fn foo(x: Foo<'a,'b>) {} // OK
    }

Closes #15517.

[breaking-change]

r? @alexcrichton
bors added a commit to rust-lang-ci/rust that referenced this issue Sep 18, 2023
fix: diagnostics for 'while let' loop with label in condition

fix rust-lang#15516
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lifetimes Area: Lifetimes / regions A-trait-system Area: Trait system A-type-system Area: Type system
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants