Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion borrowed.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ fn foo() {
let mut x = 5;
let xr = &x; // Ok (creates an immutable ref)
//*xr = 4; // Error - mutating immutable ref
//let xr = &mut x; // Error - there is already an immutable ref, so we
//let xr1 = &mut x; // Error - there is already an immutable ref, so we
// can't make a mutable one

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To make this actually error, we need another call to bar(xr) in here

let mut x = 5;
Expand Down