2015-05-20 06:52:19 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
#![warn(len_without_is_empty, len_zero)]
|
2016-08-29 21:06:59 +00:00
|
|
|
#![allow(dead_code, unused)]
|
|
|
|
|
|
|
|
pub struct PubOne;
|
|
|
|
|
|
|
|
impl PubOne {
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn len(self: &Self) -> isize {
|
2016-08-29 21:06:59 +00:00
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-19 15:36:17 +00:00
|
|
|
impl PubOne { // A second impl for this struct - the error span shouldn't mention this
|
|
|
|
pub fn irrelevant(self: &Self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Identical to PubOne, but with an allow attribute on the impl complaining len
|
|
|
|
pub struct PubAllowed;
|
|
|
|
|
|
|
|
#[allow(len_without_is_empty)]
|
|
|
|
impl PubAllowed {
|
|
|
|
pub fn len(self: &Self) -> isize {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-19 15:39:40 +00:00
|
|
|
// No allow attribute on this impl block, but that doesn't matter - we only require one on the
|
2017-02-19 15:36:17 +00:00
|
|
|
// impl containing len.
|
|
|
|
impl PubAllowed {
|
|
|
|
pub fn irrelevant(self: &Self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-29 21:06:59 +00:00
|
|
|
struct NotPubOne;
|
|
|
|
|
|
|
|
impl NotPubOne {
|
|
|
|
pub fn len(self: &Self) -> isize { // no error, len is pub but `NotPubOne` is not exported anyway
|
|
|
|
1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-20 06:52:19 +00:00
|
|
|
struct One;
|
|
|
|
|
|
|
|
impl One {
|
2016-08-29 21:06:59 +00:00
|
|
|
fn len(self: &Self) -> isize { // no error, len is private, see #1085
|
2015-08-11 18:22:20 +00:00
|
|
|
1
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 21:06:59 +00:00
|
|
|
pub trait PubTraitsToo {
|
2017-02-08 13:58:07 +00:00
|
|
|
fn len(self: &Self) -> isize;
|
2016-08-29 21:06:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PubTraitsToo for One {
|
|
|
|
fn len(self: &Self) -> isize {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-20 06:52:19 +00:00
|
|
|
trait TraitsToo {
|
2016-08-29 21:06:59 +00:00
|
|
|
fn len(self: &Self) -> isize; // no error, len is private, see #1085
|
2015-05-20 06:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TraitsToo for One {
|
2015-08-11 18:22:20 +00:00
|
|
|
fn len(self: &Self) -> isize {
|
|
|
|
0
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 21:06:59 +00:00
|
|
|
struct HasPrivateIsEmpty;
|
|
|
|
|
|
|
|
impl HasPrivateIsEmpty {
|
|
|
|
pub fn len(self: &Self) -> isize {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_empty(self: &Self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct HasIsEmpty;
|
2015-05-20 06:52:19 +00:00
|
|
|
|
|
|
|
impl HasIsEmpty {
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn len(self: &Self) -> isize {
|
2015-08-11 18:22:20 +00:00
|
|
|
1
|
|
|
|
}
|
2015-06-01 10:49:36 +00:00
|
|
|
|
2015-08-11 18:22:20 +00:00
|
|
|
fn is_empty(self: &Self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
2015-06-01 10:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Wither;
|
|
|
|
|
2016-08-29 21:06:59 +00:00
|
|
|
pub trait WithIsEmpty {
|
2015-08-11 18:22:20 +00:00
|
|
|
fn len(self: &Self) -> isize;
|
|
|
|
fn is_empty(self: &Self) -> bool;
|
2015-06-01 10:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl WithIsEmpty for Wither {
|
2015-08-11 18:22:20 +00:00
|
|
|
fn len(self: &Self) -> isize {
|
|
|
|
1
|
|
|
|
}
|
2015-06-01 10:49:36 +00:00
|
|
|
|
2015-08-11 18:22:20 +00:00
|
|
|
fn is_empty(self: &Self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
2015-06-01 10:49:36 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 21:06:59 +00:00
|
|
|
pub struct HasWrongIsEmpty;
|
2015-06-01 10:49:36 +00:00
|
|
|
|
|
|
|
impl HasWrongIsEmpty {
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn len(self: &Self) -> isize {
|
2015-08-11 18:22:20 +00:00
|
|
|
1
|
|
|
|
}
|
|
|
|
|
2016-08-29 21:06:59 +00:00
|
|
|
pub fn is_empty(self: &Self, x : u32) -> bool {
|
2015-08-11 18:22:20 +00:00
|
|
|
false
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
}
|
|
|
|
|
2017-08-28 21:13:56 +00:00
|
|
|
pub trait Empty {
|
|
|
|
fn is_empty(&self) -> bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait InheritingEmpty: Empty { //must not trigger LEN_WITHOUT_IS_EMPTY
|
|
|
|
fn len(&self) -> isize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-20 06:52:19 +00:00
|
|
|
fn main() {
|
2015-08-11 18:22:20 +00:00
|
|
|
let x = [1, 2];
|
2016-02-24 19:52:47 +00:00
|
|
|
if x.len() == 0 {
|
2015-08-11 18:22:20 +00:00
|
|
|
println!("This should not happen!");
|
|
|
|
}
|
|
|
|
|
2016-03-12 20:12:35 +00:00
|
|
|
if "".len() == 0 {
|
|
|
|
}
|
|
|
|
|
2015-08-11 18:22:20 +00:00
|
|
|
let y = One;
|
|
|
|
if y.len() == 0 { //no error because One does not have .is_empty()
|
|
|
|
println!("This should not happen either!");
|
|
|
|
}
|
|
|
|
|
|
|
|
let z : &TraitsToo = &y;
|
|
|
|
if z.len() > 0 { //no error, because TraitsToo has no .is_empty() method
|
|
|
|
println!("Nor should this!");
|
|
|
|
}
|
|
|
|
|
2016-03-01 09:13:54 +00:00
|
|
|
let has_is_empty = HasIsEmpty;
|
|
|
|
if has_is_empty.len() == 0 {
|
2015-08-11 18:22:20 +00:00
|
|
|
println!("Or this!");
|
|
|
|
}
|
2016-03-01 09:13:54 +00:00
|
|
|
if has_is_empty.len() != 0 {
|
2015-08-12 08:53:14 +00:00
|
|
|
println!("Or this!");
|
|
|
|
}
|
2016-03-01 09:13:54 +00:00
|
|
|
if has_is_empty.len() > 0 {
|
2015-08-12 08:53:14 +00:00
|
|
|
println!("Or this!");
|
|
|
|
}
|
2016-03-01 09:13:54 +00:00
|
|
|
assert!(!has_is_empty.is_empty());
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2016-03-01 09:13:54 +00:00
|
|
|
let with_is_empty: &WithIsEmpty = &Wither;
|
|
|
|
if with_is_empty.len() == 0 {
|
2015-08-11 18:22:20 +00:00
|
|
|
println!("Or this!");
|
|
|
|
}
|
2016-03-01 09:13:54 +00:00
|
|
|
assert!(!with_is_empty.is_empty());
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2016-03-01 09:13:54 +00:00
|
|
|
let has_wrong_is_empty = HasWrongIsEmpty;
|
|
|
|
if has_wrong_is_empty.len() == 0 { //no error as HasWrongIsEmpty does not have .is_empty()
|
2015-08-11 18:22:20 +00:00
|
|
|
println!("Or this!");
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
}
|
2017-02-25 03:26:33 +00:00
|
|
|
|
|
|
|
fn test_slice(b: &[u8]) {
|
|
|
|
if b.len() != 0 {
|
|
|
|
}
|
|
|
|
}
|