rust/tests/ui/borrowck/immut-function-arguments.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
155 B
Rust
Raw Normal View History

fn f(y: Box<isize>) {
*y = 5; //~ ERROR cannot assign
}
fn g() {
let _frob = |q: Box<isize>| { *q = 2; }; //~ ERROR cannot assign
}
fn main() {}