rust/tests/compile-fail/needless_borrow.rs

36 lines
936 B
Rust
Raw Normal View History

2016-04-26 15:49:53 +02:00
#![feature(plugin)]
#![plugin(clippy)]
fn x(y: &i32) -> i32 {
*y
}
#[deny(clippy)]
#[allow(unused_variables)]
fn main() {
let a = 5;
let b = x(&a);
2016-06-05 18:07:12 +02:00
let c = x(&&a); //~ ERROR: this expression borrows a reference that is immediately dereferenced by the compiler
2016-04-26 15:49:53 +02:00
let s = &String::from("hi");
let s_ident = f(&s); // should not error, because `&String` implements Copy, but `String` does not
let g_val = g(&Vec::new()); // should not error, because `&Vec<T>` derefs to `&[T]`
let vec = Vec::new();
let vec_val = g(&vec); // should not error, because `&Vec<T>` derefs to `&[T]`
h(&"foo"); // should not error, because the `&&str` is required, due to `&Trait`
2016-08-01 16:59:14 +02:00
if let Some(ref cake) = Some(&5) {} //~ ERROR: this pattern creates a reference to a reference
2016-04-26 15:49:53 +02:00
}
fn f<T:Copy>(y: &T) -> T {
*y
}
fn g(y: &[u8]) -> u8 {
y[0]
}
trait Trait {}
impl<'a> Trait for &'a str {}
fn h(_: &Trait) {}