Add missing code fence to diagnostics.rs

Closes #33662
This commit is contained in:
Andrew Paseltiner 2016-05-16 16:57:33 -04:00
parent 8310de856d
commit f3c63d21c1

View file

@ -391,6 +391,7 @@ fn you_know_nothing(jon_snow: &mut i32) {
// but it is already borrowed
};
}
```
In here, `jon_snow` is already borrowed by the `nights_watch` closure, so it
cannot be borrowed by the `starks` closure at the same time. To fix this issue,