blob: 97141886fe7381a314b521b104ecf7ecc1e72002 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
pub fn bar<F: Fn()>(_f: F) {} //~ NOTE change this to accept `FnMut` instead of `Fn`
pub fn foo() {
let mut x = 0;
bar(move || x = 1);
//~^ ERROR cannot assign to `x`, as it is a captured variable in a `Fn` closure
//~| NOTE cannot assign
//~| NOTE expects `Fn` instead of `FnMut`
//~| NOTE in this closure
}
fn main() {}
|