2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::wrong_self_convention)]
|
|
|
|
#![warn(clippy::wrong_pub_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>) {}
|
|
|
|
}
|
|
|
|
}
|