mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
8664d03ec6
closes #86
15 lines
284 B
Rust
15 lines
284 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(warnings)]
|
|
#![allow(dead_code)]
|
|
|
|
struct Foo;
|
|
|
|
impl PartialEq for Foo {
|
|
fn eq(&self, _: &Foo) -> bool { true }
|
|
fn ne(&self, _: &Foo) -> bool { false }
|
|
//~^ ERROR re-implementing `PartialEq::ne` is unnecessary
|
|
}
|
|
|
|
fn main() {}
|