mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
43 lines
1 KiB
Rust
43 lines
1 KiB
Rust
#![allow(unused_variables)]
|
|
|
|
fn takes_an_immutable_reference(a: &i32) {}
|
|
fn takes_a_mutable_reference(a: &mut i32) {}
|
|
|
|
struct MyStruct;
|
|
|
|
impl MyStruct {
|
|
fn takes_an_immutable_reference(&self, a: &i32) {}
|
|
|
|
fn takes_a_mutable_reference(&self, a: &mut i32) {}
|
|
}
|
|
|
|
#[warn(clippy::unnecessary_mut_passed)]
|
|
fn main() {
|
|
// Functions
|
|
takes_an_immutable_reference(&mut 42);
|
|
let as_ptr: fn(&i32) = takes_an_immutable_reference;
|
|
as_ptr(&mut 42);
|
|
|
|
// Methods
|
|
let my_struct = MyStruct;
|
|
my_struct.takes_an_immutable_reference(&mut 42);
|
|
|
|
// No error
|
|
|
|
// Functions
|
|
takes_an_immutable_reference(&42);
|
|
let as_ptr: fn(&i32) = takes_an_immutable_reference;
|
|
as_ptr(&42);
|
|
|
|
takes_a_mutable_reference(&mut 42);
|
|
let as_ptr: fn(&mut i32) = takes_a_mutable_reference;
|
|
as_ptr(&mut 42);
|
|
|
|
let a = &mut 42;
|
|
takes_an_immutable_reference(a);
|
|
|
|
// Methods
|
|
my_struct.takes_an_immutable_reference(&42);
|
|
my_struct.takes_a_mutable_reference(&mut 42);
|
|
my_struct.takes_an_immutable_reference(a);
|
|
}
|