2018-10-06 11:18:06 -05:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
|
2018-10-11 05:16:22 -05:00
|
|
|
|
2017-09-18 05:47:33 -05:00
|
|
|
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::wrong_self_convention)]
|
|
|
|
#![warn(clippy::wrong_pub_self_convention)]
|
|
|
|
#![allow(dead_code, clippy::trivially_copy_pass_by_ref)]
|
2016-01-03 07:22:27 -06:00
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
|
|
|
|
fn as_i32(self) {}
|
2017-01-04 20:01:53 -06:00
|
|
|
fn as_u32(&self) {}
|
2016-01-03 07:22:27 -06:00
|
|
|
fn into_i32(self) {}
|
|
|
|
fn is_i32(self) {}
|
2017-01-04 20:01:53 -06:00
|
|
|
fn is_u32(&self) {}
|
2016-01-03 07:22:27 -06:00
|
|
|
fn to_i32(self) {}
|
2017-02-08 07:58:07 -06:00
|
|
|
fn from_i32(self) {}
|
2016-01-03 07:22:27 -06:00
|
|
|
|
|
|
|
pub fn as_i64(self) {}
|
|
|
|
pub fn into_i64(self) {}
|
|
|
|
pub fn is_i64(self) {}
|
|
|
|
pub fn to_i64(self) {}
|
2017-02-08 07:58:07 -06:00
|
|
|
pub fn from_i64(self) {}
|
2016-08-08 10:09:36 -05:00
|
|
|
// check whether the lint can be allowed at the function level
|
2018-07-28 10:34:52 -05:00
|
|
|
#[allow(clippy::wrong_self_convention)]
|
2016-08-08 10:09:36 -05:00
|
|
|
pub fn from_cake(self) {}
|
2016-01-03 07:22:27 -06:00
|
|
|
|
2017-06-06 12:26:50 -05:00
|
|
|
fn as_x<F: AsRef<Self>>(_: F) { }
|
|
|
|
fn as_y<F: AsRef<Foo>>(_: F) { }
|
2016-01-03 07:22:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl Bar {
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
fn as_i32(self) {}
|
2017-01-04 20:01:53 -06:00
|
|
|
fn as_u32(&self) {}
|
2017-02-08 07:58:07 -06:00
|
|
|
fn into_i32(&self) {}
|
2017-01-04 20:01:53 -06:00
|
|
|
fn into_u32(self) {}
|
2017-02-08 07:58:07 -06:00
|
|
|
fn is_i32(self) {}
|
2017-01-04 20:01:53 -06:00
|
|
|
fn is_u32(&self) {}
|
2017-02-08 07:58:07 -06:00
|
|
|
fn to_i32(self) {}
|
2017-01-04 20:01:53 -06:00
|
|
|
fn to_u32(&self) {}
|
2017-02-08 07:58:07 -06:00
|
|
|
fn from_i32(self) {}
|
2016-01-03 07:22:27 -06:00
|
|
|
|
2017-02-08 07:58:07 -06: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 07:22:27 -06:00
|
|
|
|
2016-10-27 03:11:34 -05:00
|
|
|
// test for false positives
|
|
|
|
fn as_(self) {}
|
|
|
|
fn into_(&self) {}
|
|
|
|
fn is_(self) {}
|
|
|
|
fn to_(self) {}
|
|
|
|
fn from_(self) {}
|
2018-10-01 06:47:06 -05:00
|
|
|
fn to_mut(&mut self) {}
|
2016-01-03 07:22:27 -06:00
|
|
|
}
|