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

there is mistake in explanation of E0382 #31048

Closed
olehdevua opened this issue Jan 20, 2016 · 0 comments
Closed

there is mistake in explanation of E0382 #31048

olehdevua opened this issue Jan 20, 2016 · 0 comments

Comments

@olehdevua
Copy link

in examle

use std::cell::RefCell;
use std::rc::Rc;

    struct MyStruct { s: u32 }

fn main() {
    let mut x = Rc::new(RefCell::new(MyStruct{ s: 5u32 }));
    let y = x.clone();
    x.borrow_mut().s = 6;
    println!("{}", x.borrow.s);
}

we must use borrow() instead of just borrow

steveklabnik added a commit to steveklabnik/rust that referenced this issue Jan 23, 2016

Verified

This commit was signed with the committer’s verified signature.
sovdeeth sovdee
steveklabnik added a commit to steveklabnik/rust that referenced this issue Jan 23, 2016

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant