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

Is this a bug or just told me that the compiler can't infer generic parameter type at compile time? #92852

Open
NightfallDM opened this issue Jan 13, 2022 · 2 comments
Labels
A-borrow-checker Area: The borrow checker A-diagnostics Area: Messages for errors, warnings, and lints D-terse Diagnostics: An error or lint that doesn't give enough information about the problem at hand. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@NightfallDM
Copy link

NightfallDM commented Jan 13, 2022

I tried this code:

// can not work, because &mut do not impl 'Copy' or 'Clone'
// fn use_mut_ref_g\<T\>(_x: T) {}

// this can work
fn use_mut_ref(_x: &mut String){
    drop(_x);
}

// also this example also can work
fn use_mut_ref_other\<T\>(_x: &mut T) {}

fn main() {
    let mut x = String::from("xxx");
    let x_mut_ref = &mut x;
    // use_mut_ref_g(x_mut_ref);
    use_mut_ref(x_mut_ref);
    use_mut_ref_other(x_mut_ref);
    println!("x = {}", x_mut_ref);
}

// So the important of whether above simple code can work depend on if there the compiler
// can dectect the fn arg if it is type '&' or '&mut' ?

// do it also told us that the compiler can't dectect the first example that the type of x is '&mut String'
// at compile time ? otherwise it can do the same thing just like the second and third example
// and can work, or mean there have a bug?

// and as this point, i know the reason why the second and third example can work, because we already
// mut borrow x, and also this variable do not impl 'Sync' or 'Send', so we just in a single thread env
// and the compiler already make sure we are the only one who mut borrow x. So it can let the fn which take
// '&mut String' as param get a mut borrow through 'x_mut_ref'(which also a mut borrow to x) right?
// At this point there do exist two mut borrow to x, but it won't operation on x at one time, So it is ok.

// By the way ,in '&mut T' case the T match the '&mut String' itself, So the match after is '&mut &mut String' 
@NightfallDM NightfallDM added the C-bug Category: This is a bug. label Jan 13, 2022
@emi2k01
Copy link

emi2k01 commented Jan 15, 2022

Better formatted

fn foo<T>(_x: T) {
}

fn main() {
    let mut x = String::from("xxx");
    let x_mut_ref = &mut x;
    // foo(x_mut_ref); /* Why this doesn't work? */
    foo::<&mut String>(x_mut_ref); /* and why this does */
    println!("x = {}", x_mut_ref);
}

I think this is related to: rust-lang/reference#788

@NightfallDM
Copy link
Author

thanks for post me this useful link! emm just like your example code, i think after compiler deal with the generic type match, it should know or may need some indirect coerced that '_x' will be the '&mut String', then i think it would do the same work just as we supply the Type(&mut String) explicitly, so , i just complain why them do not same , you know, they should be same : >

@fmease fmease added A-diagnostics Area: Messages for errors, warnings, and lints A-borrow-checker Area: The borrow checker D-terse Diagnostics: An error or lint that doesn't give enough information about the problem at hand. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. and removed needs-triage-legacy C-bug Category: This is a bug. labels Jan 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-borrow-checker Area: The borrow checker A-diagnostics Area: Messages for errors, warnings, and lints D-terse Diagnostics: An error or lint that doesn't give enough information about the problem at hand. 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