2015-09-30 13:27:09 +02:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
2015-09-30 18:17:55 +02:00
|
|
|
#![allow(unused_variables)]
|
2015-09-30 18:00:14 +02:00
|
|
|
|
2016-03-10 18:13:49 +01:00
|
|
|
fn takes_an_immutable_reference(a: &i32) {}
|
|
|
|
fn takes_a_mutable_reference(a: &mut i32) {}
|
2015-09-30 13:27:09 +02:00
|
|
|
|
|
|
|
struct MyStruct;
|
|
|
|
|
|
|
|
impl MyStruct {
|
|
|
|
fn takes_an_immutable_reference(&self, a: &i32) {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn takes_a_mutable_reference(&self, a: &mut i32) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deny(unnecessary_mut_passed)]
|
|
|
|
fn main() {
|
|
|
|
// Functions
|
|
|
|
takes_an_immutable_reference(&mut 42); //~ERROR The function/method "takes_an_immutable_reference" doesn't need a mutable reference
|
2016-02-22 15:42:24 +01:00
|
|
|
let as_ptr: fn(&i32) = takes_an_immutable_reference;
|
|
|
|
as_ptr(&mut 42); //~ERROR The function/method "as_ptr" doesn't need a mutable reference
|
2016-03-10 18:13:49 +01:00
|
|
|
|
2015-09-30 13:27:09 +02:00
|
|
|
// Methods
|
|
|
|
let my_struct = MyStruct;
|
|
|
|
my_struct.takes_an_immutable_reference(&mut 42); //~ERROR The function/method "takes_an_immutable_reference" doesn't need a mutable reference
|
2016-03-10 18:13:49 +01:00
|
|
|
|
2015-09-30 13:27:09 +02:00
|
|
|
|
|
|
|
// No error
|
2016-03-10 18:13:49 +01:00
|
|
|
|
2015-09-30 13:27:09 +02:00
|
|
|
// Functions
|
|
|
|
takes_an_immutable_reference(&42);
|
2016-02-22 15:42:24 +01:00
|
|
|
let as_ptr: fn(&i32) = takes_an_immutable_reference;
|
|
|
|
as_ptr(&42);
|
2016-03-10 18:13:49 +01:00
|
|
|
|
2015-09-30 13:27:09 +02:00
|
|
|
takes_a_mutable_reference(&mut 42);
|
2016-02-22 15:42:24 +01:00
|
|
|
let as_ptr: fn(&mut i32) = takes_a_mutable_reference;
|
|
|
|
as_ptr(&mut 42);
|
2016-03-10 18:13:49 +01:00
|
|
|
|
2015-09-30 18:00:14 +02:00
|
|
|
let a = &mut 42;
|
2015-09-30 13:27:09 +02:00
|
|
|
takes_an_immutable_reference(a);
|
2016-03-10 18:13:49 +01:00
|
|
|
|
2015-09-30 13:27:09 +02:00
|
|
|
// Methods
|
|
|
|
my_struct.takes_an_immutable_reference(&42);
|
|
|
|
my_struct.takes_a_mutable_reference(&mut 42);
|
|
|
|
my_struct.takes_an_immutable_reference(a);
|
|
|
|
}
|