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

Static methods need to be in the method lookup loop for UFCS to be backwards compatible #15430

Closed
pcwalton opened this issue Jul 4, 2014 · 1 comment
Labels
A-resolve Area: Name/path resolution done by `rustc_resolve` specifically A-type-system Area: Type system

Comments

@pcwalton
Copy link
Contributor

pcwalton commented Jul 4, 2014

Bleh. Nominating for 1.0.

@pcwalton
Copy link
Contributor Author

pcwalton commented Jul 8, 2014

Actually I don't think this is true. Consider the following program, which compiles:

struct Foo {
    a: Bar,
    b: int,
}

struct Bar {
    c: int,
    d: int,
}

impl Deref<Bar> for Foo {
    fn deref<'a>(&'a self) -> &'a Bar {
        &self.a
    }
}

impl Foo {
    fn baz(~self) {
        println!("hello");
    }
}

impl Bar {
    fn baz(&self) {
        println!("goodbye");
    }
}

fn main() {
    let mut f = Foo {
        a: Bar {
            c: 1,
            d: 2,
        },
        b: 3,
    };
    f.baz();
}

Notice how the call to .baz() just ignores the irrelevant ~self method. This is analogous to what will happen with static methods in the future. So I believe UFCS to be backwards compatible. Closing.

@pcwalton pcwalton closed this as completed Jul 8, 2014
bors added a commit to rust-lang-ci/rust that referenced this issue Sep 18, 2023
…n_result, r=Veykril

minor : Deunwrap wrap_return_type_in_result

rust-lang#15398 subtask 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-resolve Area: Name/path resolution done by `rustc_resolve` specifically A-type-system Area: Type system
Projects
None yet
Development

No branches or pull requests

1 participant