You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0502]: cannot borrow `foo` as immutable because it is also borrowed as mutable
--> src/main.rs:22:15
|
22 | foo[2] += foo[2];
| --- ^^^ immutable borrow occurs here
| |
| mutable borrow occurs here
(playpen)
fails to compile with the following error:
However, it works fine without NLL.
cc @nikomatsakis
The text was updated successfully, but these errors were encountered: