blob: 5a5e619ef31f2ebf03005443fea97c9621d249c9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//compile-flags: -Z borrowck=compare
fn foo(_x: u32) {
_x = 4;
//~^ ERROR cannot assign to immutable argument `_x` (Mir)
//~^^ ERROR cannot assign twice to immutable variable `_x` (Ast)
}
fn main() {}
|