rust-clippy/tests/ui/needless_take_by_value.rs

27 lines
424 B
Rust
Raw Normal View History

2017-02-18 08:00:36 +00:00
#![feature(plugin)]
#![plugin(clippy)]
#![deny(needless_take_by_value)]
#![allow(dead_code)]
// `v` will be warned
// `w`, `x` and `y` are allowed (moved or mutated)
fn foo<T: Default>(v: Vec<T>, w: Vec<T>, mut x: Vec<T>, y: Vec<T>) -> Vec<T> {
assert_eq!(v.len(), 42);
consume(w);
x.push(T::default());
y
}
fn consume<T>(_: T) {}
// ok
fn test_fn<F: Fn(i32) -> i32>(f: F) {
f(1);
}
fn main() {}