mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
15 lines
223 B
Rust
15 lines
223 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 }
|
|
|
|
}
|
|
|
|
fn main() {}
|