rust/tests/ui/borrowck/immut-function-arguments.rs
2023-01-11 09:32:08 +00:00

10 lines
155 B
Rust

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