2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::wrong_self_convention)]
|
2020-04-03 01:46:01 +00:00
|
|
|
#![allow(dead_code)]
|
2016-01-03 13:22:27 +00:00
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
fn as_i32(self) {}
|
2017-01-05 02:01:53 +00:00
|
|
|
fn as_u32(&self) {}
|
2016-01-03 13:22:27 +00:00
|
|
|
fn into_i32(self) {}
|
|
|
|
fn is_i32(self) {}
|
2017-01-05 02:01:53 +00:00
|
|
|
fn is_u32(&self) {}
|
2016-01-03 13:22:27 +00:00
|
|
|
fn to_i32(self) {}
|
2017-02-08 13:58:07 +00:00
|
|
|
fn from_i32(self) {}
|
2016-01-03 13:22:27 +00:00
|
|
|
|
|
|
|
pub fn as_i64(self) {}
|
|
|
|
pub fn into_i64(self) {}
|
|
|
|
pub fn is_i64(self) {}
|
|
|
|
pub fn to_i64(self) {}
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn from_i64(self) {}
|
2016-08-08 15:09:36 +00:00
|
|
|
// check whether the lint can be allowed at the function level
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::wrong_self_convention)]
|
2016-08-08 15:09:36 +00:00
|
|
|
pub fn from_cake(self) {}
|
2016-01-03 13:22:27 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
fn as_x<F: AsRef<Self>>(_: F) {}
|
|
|
|
fn as_y<F: AsRef<Foo>>(_: F) {}
|
2016-01-03 13:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl Bar {
|
2017-02-08 13:58:07 +00:00
|
|
|
fn as_i32(self) {}
|
2017-01-05 02:01:53 +00:00
|
|
|
fn as_u32(&self) {}
|
2017-02-08 13:58:07 +00:00
|
|
|
fn into_i32(&self) {}
|
2017-01-05 02:01:53 +00:00
|
|
|
fn into_u32(self) {}
|
2017-02-08 13:58:07 +00:00
|
|
|
fn is_i32(self) {}
|
2017-01-05 02:01:53 +00:00
|
|
|
fn is_u32(&self) {}
|
2017-02-08 13:58:07 +00:00
|
|
|
fn to_i32(self) {}
|
2017-01-05 02:01:53 +00:00
|
|
|
fn to_u32(&self) {}
|
2017-02-08 13:58:07 +00:00
|
|
|
fn from_i32(self) {}
|
2016-01-03 13:22:27 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn as_i64(self) {}
|
|
|
|
pub fn into_i64(&self) {}
|
|
|
|
pub fn is_i64(self) {}
|
|
|
|
pub fn to_i64(self) {}
|
|
|
|
pub fn from_i64(self) {}
|
2016-01-03 13:22:27 +00:00
|
|
|
|
2016-10-27 08:11:34 +00:00
|
|
|
// test for false positives
|
|
|
|
fn as_(self) {}
|
|
|
|
fn into_(&self) {}
|
|
|
|
fn is_(self) {}
|
|
|
|
fn to_(self) {}
|
|
|
|
fn from_(self) {}
|
2018-10-01 11:47:06 +00:00
|
|
|
fn to_mut(&mut self) {}
|
2016-01-03 13:22:27 +00:00
|
|
|
}
|
2019-08-10 04:01:15 +00:00
|
|
|
|
|
|
|
// Allow Box<Self>, Rc<Self>, Arc<Self> for methods that take conventionally take Self by value
|
|
|
|
#[allow(clippy::boxed_local)]
|
|
|
|
mod issue4293 {
|
|
|
|
use std::rc::Rc;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
struct T;
|
|
|
|
|
|
|
|
impl T {
|
|
|
|
fn into_s1(self: Box<Self>) {}
|
|
|
|
fn into_s2(self: Rc<Self>) {}
|
|
|
|
fn into_s3(self: Arc<Self>) {}
|
|
|
|
|
|
|
|
fn into_t1(self: Box<T>) {}
|
|
|
|
fn into_t2(self: Rc<T>) {}
|
|
|
|
fn into_t3(self: Arc<T>) {}
|
|
|
|
}
|
|
|
|
}
|
2020-08-28 14:10:16 +00:00
|
|
|
|
|
|
|
// False positive for async (see #4037)
|
|
|
|
mod issue4037 {
|
|
|
|
pub struct Foo;
|
|
|
|
pub struct Bar;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub async fn into_bar(self) -> Bar {
|
|
|
|
Bar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
// Lint also in trait definition (see #6307)
|
|
|
|
mod issue6307 {
|
|
|
|
trait T: Sized {
|
|
|
|
fn as_i32(self) {}
|
|
|
|
fn as_u32(&self) {}
|
2021-01-15 09:56:44 +00:00
|
|
|
fn into_i32(self) {}
|
|
|
|
fn into_i32_ref(&self) {}
|
2020-12-20 16:19:49 +00:00
|
|
|
fn into_u32(self) {}
|
|
|
|
fn is_i32(self) {}
|
|
|
|
fn is_u32(&self) {}
|
|
|
|
fn to_i32(self) {}
|
|
|
|
fn to_u32(&self) {}
|
|
|
|
fn from_i32(self) {}
|
|
|
|
// check whether the lint can be allowed at the function level
|
|
|
|
#[allow(clippy::wrong_self_convention)]
|
|
|
|
fn from_cake(self) {}
|
|
|
|
|
|
|
|
// test for false positives
|
|
|
|
fn as_(self) {}
|
|
|
|
fn into_(&self) {}
|
|
|
|
fn is_(self) {}
|
|
|
|
fn to_(self) {}
|
|
|
|
fn from_(self) {}
|
|
|
|
fn to_mut(&mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait U {
|
|
|
|
fn as_i32(self);
|
|
|
|
fn as_u32(&self);
|
2021-01-15 09:56:44 +00:00
|
|
|
fn into_i32(self);
|
|
|
|
fn into_i32_ref(&self);
|
|
|
|
fn into_u32(self);
|
|
|
|
fn is_i32(self);
|
|
|
|
fn is_u32(&self);
|
|
|
|
fn to_i32(self);
|
|
|
|
fn to_u32(&self);
|
|
|
|
fn from_i32(self);
|
|
|
|
// check whether the lint can be allowed at the function level
|
|
|
|
#[allow(clippy::wrong_self_convention)]
|
|
|
|
fn from_cake(self);
|
|
|
|
|
|
|
|
// test for false positives
|
|
|
|
fn as_(self);
|
|
|
|
fn into_(&self);
|
|
|
|
fn is_(self);
|
|
|
|
fn to_(self);
|
|
|
|
fn from_(self);
|
|
|
|
fn to_mut(&mut self);
|
|
|
|
}
|
|
|
|
|
|
|
|
trait C: Copy {
|
|
|
|
fn as_i32(self);
|
|
|
|
fn as_u32(&self);
|
|
|
|
fn into_i32(self);
|
|
|
|
fn into_i32_ref(&self);
|
2020-12-20 16:19:49 +00:00
|
|
|
fn into_u32(self);
|
|
|
|
fn is_i32(self);
|
|
|
|
fn is_u32(&self);
|
|
|
|
fn to_i32(self);
|
|
|
|
fn to_u32(&self);
|
|
|
|
fn from_i32(self);
|
|
|
|
// check whether the lint can be allowed at the function level
|
|
|
|
#[allow(clippy::wrong_self_convention)]
|
|
|
|
fn from_cake(self);
|
|
|
|
|
|
|
|
// test for false positives
|
|
|
|
fn as_(self);
|
|
|
|
fn into_(&self);
|
|
|
|
fn is_(self);
|
|
|
|
fn to_(self);
|
|
|
|
fn from_(self);
|
|
|
|
fn to_mut(&mut self);
|
|
|
|
}
|
|
|
|
}
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
mod issue6727 {
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
struct FooCopy;
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
impl FooCopy {
|
2021-03-25 18:29:11 +00:00
|
|
|
fn to_u64(self) -> u64 {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
// trigger lint
|
|
|
|
fn to_u64_v2(&self) -> u64 {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct FooNoCopy;
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
impl FooNoCopy {
|
2021-03-25 18:29:11 +00:00
|
|
|
// trigger lint
|
|
|
|
fn to_u64(self) -> u64 {
|
|
|
|
2
|
|
|
|
}
|
|
|
|
fn to_u64_v2(&self) -> u64 {
|
|
|
|
2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-13 12:18:19 +00:00
|
|
|
|
|
|
|
pub mod issue8142 {
|
|
|
|
struct S;
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
// Should lint: is_ methods should only take &self, or no self at all.
|
|
|
|
fn is_still_buggy(&mut self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not lint: "no self at all" is allowed.
|
|
|
|
fn is_forty_two(x: u32) -> bool {
|
|
|
|
x == 42
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not lint: &self is allowed.
|
|
|
|
fn is_test_code(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|