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

freeze.md: Incorrect example #1226

Merged
merged 2 commits into from
Aug 2, 2019
Merged
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
6 changes: 4 additions & 2 deletions src/scope/borrow/freeze.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ fn main() {

{
// Borrow `_mutable_integer`
let _large_integer = &_mutable_integer;
let large_integer = &_mutable_integer;

// Error! `_mutable_integer` is frozen in this scope
_mutable_integer = 50;
// FIXME ^ Comment out this line

// `_large_integer` goes out of scope
println!("Immutably borrowed {}", large_integer);

// `large_integer` goes out of scope
}

// Ok! `_mutable_integer` is not frozen in this scope
Expand Down