We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Example that shouldn't compile:
#![feature(unboxed_closures)] fn main() { let x = 0u; move |&mut:| x = 1; }
Note that this currently ICEs due to #18238, but it's still a problem once that is fixed.