f90228b8a8
note: you can still move from copy/move mode args
31 lines
694 B
Rust
31 lines
694 B
Rust
// Note: it would be nice to give fewer warnings in these cases.
|
|
|
|
fn mutate_by_mut_ref(&x: uint) {
|
|
x = 0u;
|
|
}
|
|
|
|
fn mutate_by_ref(&&x: uint) {
|
|
//!^ WARNING unused variable: `x`
|
|
x = 0u; //! ERROR assigning to argument
|
|
}
|
|
|
|
fn mutate_by_val(++x: uint) {
|
|
//!^ WARNING unused variable: `x`
|
|
x = 0u; //! ERROR assigning to argument
|
|
}
|
|
|
|
fn mutate_by_copy(+x: uint) {
|
|
//!^ WARNING unused variable: `x`
|
|
x = 0u; //! ERROR assigning to argument
|
|
//!^ WARNING value assigned to `x` is never read
|
|
}
|
|
|
|
fn mutate_by_move(-x: uint) {
|
|
//!^ WARNING unused variable: `x`
|
|
x = 0u; //! ERROR assigning to argument
|
|
//!^ WARNING value assigned to `x` is never read
|
|
}
|
|
|
|
fn main() {
|
|
}
|