rust/tests/ui/borrowck/immutable-arg.rs

7 lines
102 B
Rust
Raw Permalink Normal View History

fn foo(_x: u32) {
_x = 4;
2019-05-02 22:34:15 +00:00
//~^ ERROR cannot assign to immutable argument `_x`
}
fn main() {}