2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::needless_pass_by_value)]
|
2018-12-09 22:26:16 +00:00
|
|
|
#![allow(
|
|
|
|
dead_code,
|
|
|
|
clippy::single_match,
|
|
|
|
clippy::redundant_pattern_matching,
|
2019-09-16 15:50:36 +00:00
|
|
|
clippy::option_option,
|
|
|
|
clippy::redundant_clone
|
2018-12-09 22:26:16 +00:00
|
|
|
)]
|
2017-02-18 08:00:36 +00:00
|
|
|
|
2017-10-08 01:23:41 +00:00
|
|
|
use std::borrow::Borrow;
|
2019-02-06 07:09:56 +00:00
|
|
|
use std::collections::HashSet;
|
2017-10-08 01:23:41 +00:00
|
|
|
use std::convert::AsRef;
|
2019-11-06 17:38:10 +00:00
|
|
|
use std::mem::MaybeUninit;
|
2017-10-08 01:23:41 +00:00
|
|
|
|
2017-02-20 07:45:37 +00:00
|
|
|
// `v` should be warned
|
2017-02-18 08:00:36 +00:00
|
|
|
// `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) {}
|
|
|
|
|
2017-02-20 03:50:31 +00:00
|
|
|
struct Wrapper(String);
|
|
|
|
|
|
|
|
fn bar(x: String, y: Wrapper) {
|
|
|
|
assert_eq!(x.len(), 42);
|
|
|
|
assert_eq!(y.0.len(), 42);
|
|
|
|
}
|
|
|
|
|
2017-10-08 01:23:41 +00:00
|
|
|
// V implements `Borrow<V>`, but should be warned correctly
|
|
|
|
fn test_borrow_trait<T: Borrow<str>, U: AsRef<str>, V>(t: T, u: U, v: V) {
|
2017-02-20 03:50:31 +00:00
|
|
|
println!("{}", t.borrow());
|
2017-10-08 01:23:41 +00:00
|
|
|
println!("{}", u.as_ref());
|
|
|
|
consume(&v);
|
2017-02-20 03:50:31 +00:00
|
|
|
}
|
|
|
|
|
2017-02-18 08:00:36 +00:00
|
|
|
// ok
|
|
|
|
fn test_fn<F: Fn(i32) -> i32>(f: F) {
|
|
|
|
f(1);
|
|
|
|
}
|
|
|
|
|
2017-02-20 07:45:37 +00:00
|
|
|
// x should be warned, but y is ok
|
|
|
|
fn test_match(x: Option<Option<String>>, y: Option<Option<String>>) {
|
|
|
|
match x {
|
|
|
|
Some(Some(_)) => 1, // not moved
|
|
|
|
_ => 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
match y {
|
|
|
|
Some(Some(s)) => consume(s), // moved
|
|
|
|
_ => (),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-20 09:18:31 +00:00
|
|
|
// x and y should be warned, but z is ok
|
|
|
|
fn test_destructure(x: Wrapper, y: Wrapper, z: Wrapper) {
|
|
|
|
let Wrapper(s) = z; // moved
|
|
|
|
let Wrapper(ref t) = y; // not moved
|
2017-02-21 09:44:31 +00:00
|
|
|
let Wrapper(_) = y; // still not moved
|
|
|
|
|
2017-02-20 07:45:37 +00:00
|
|
|
assert_eq!(x.0.len(), s.len());
|
2017-02-20 09:18:31 +00:00
|
|
|
println!("{}", t);
|
2017-02-20 07:45:37 +00:00
|
|
|
}
|
|
|
|
|
2017-10-08 01:23:41 +00:00
|
|
|
trait Foo {}
|
|
|
|
|
2017-11-03 08:24:10 +00:00
|
|
|
// `S: Serialize` is allowed to be passed by value, since a caller can pass `&S` instead
|
2017-10-08 01:23:41 +00:00
|
|
|
trait Serialize {}
|
|
|
|
impl<'a, T> Serialize for &'a T where T: Serialize {}
|
|
|
|
impl Serialize for i32 {}
|
|
|
|
|
|
|
|
fn test_blanket_ref<T: Foo, S: Serialize>(_foo: T, _serializable: S) {}
|
|
|
|
|
2017-10-08 08:51:44 +00:00
|
|
|
fn issue_2114(s: String, t: String, u: Vec<i32>, v: Vec<i32>) {
|
|
|
|
s.capacity();
|
|
|
|
let _ = t.clone();
|
|
|
|
u.capacity();
|
|
|
|
let _ = v.clone();
|
|
|
|
}
|
|
|
|
|
2017-11-03 08:24:10 +00:00
|
|
|
struct S<T, U>(T, U);
|
|
|
|
|
|
|
|
impl<T: Serialize, U> S<T, U> {
|
|
|
|
fn foo(
|
2018-12-09 22:26:16 +00:00
|
|
|
self,
|
|
|
|
// taking `self` by value is always allowed
|
2017-11-03 08:24:10 +00:00
|
|
|
s: String,
|
|
|
|
t: String,
|
|
|
|
) -> usize {
|
|
|
|
s.len() + t.capacity()
|
|
|
|
}
|
|
|
|
|
2019-04-01 08:28:07 +00:00
|
|
|
fn bar(_t: T, // Ok, since `&T: Serialize` too
|
2017-11-03 08:24:10 +00:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
fn baz(&self, _u: U, _s: Self) {}
|
2017-11-03 08:24:10 +00:00
|
|
|
}
|
|
|
|
|
2017-11-06 21:33:25 +00:00
|
|
|
trait FalsePositive {
|
|
|
|
fn visit_str(s: &str);
|
|
|
|
fn visit_string(s: String) {
|
|
|
|
Self::visit_str(&s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-18 08:30:52 +00:00
|
|
|
// shouldn't warn on extern funcs
|
2019-11-06 17:38:10 +00:00
|
|
|
extern "C" fn ext(x: MaybeUninit<usize>) -> usize {
|
|
|
|
unsafe { x.assume_init() }
|
2018-12-09 22:26:16 +00:00
|
|
|
}
|
2018-01-18 08:30:52 +00:00
|
|
|
|
2020-07-07 15:12:44 +00:00
|
|
|
// exempt RangeArgument
|
2018-05-29 08:56:58 +00:00
|
|
|
fn range<T: ::std::ops::RangeBounds<usize>>(range: T) {
|
|
|
|
let _ = range.start_bound();
|
2018-01-18 08:49:19 +00:00
|
|
|
}
|
|
|
|
|
2018-01-18 13:27:47 +00:00
|
|
|
struct CopyWrapper(u32);
|
|
|
|
|
|
|
|
fn bar_copy(x: u32, y: CopyWrapper) {
|
|
|
|
assert_eq!(x, 42);
|
|
|
|
assert_eq!(y.0, 42);
|
|
|
|
}
|
|
|
|
|
|
|
|
// x and y should be warned, but z is ok
|
|
|
|
fn test_destructure_copy(x: CopyWrapper, y: CopyWrapper, z: CopyWrapper) {
|
|
|
|
let CopyWrapper(s) = z; // moved
|
|
|
|
let CopyWrapper(ref t) = y; // not moved
|
|
|
|
let CopyWrapper(_) = y; // still not moved
|
|
|
|
|
|
|
|
assert_eq!(x.0, s);
|
|
|
|
println!("{}", t);
|
|
|
|
}
|
|
|
|
|
2018-10-01 20:33:20 +00:00
|
|
|
// The following 3 lines should not cause an ICE. See #2831
|
|
|
|
trait Bar<'a, A> {}
|
|
|
|
impl<'b, T> Bar<'b, T> for T {}
|
|
|
|
fn some_fun<'b, S: Bar<'b, ()>>(_item: S) {}
|
|
|
|
|
|
|
|
// Also this should not cause an ICE. See #2831
|
|
|
|
trait Club<'a, A> {}
|
|
|
|
impl<T> Club<'static, T> for T {}
|
|
|
|
fn more_fun(_item: impl Club<'static, i32>) {}
|
|
|
|
|
2019-02-06 07:09:56 +00:00
|
|
|
fn is_sync<T>(_: T)
|
|
|
|
where
|
|
|
|
T: Sync,
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// This should not cause an ICE either
|
|
|
|
// https://github.com/rust-lang/rust-clippy/issues/3144
|
|
|
|
is_sync(HashSet::<usize>::new());
|
|
|
|
}
|