]> git.lizzy.rs Git - rust.git/blob - tests/ui/partialeq_ne_impl.rs
remove all //~ from tests
[rust.git] / tests / ui / partialeq_ne_impl.rs
1 #![feature(plugin)]
2 #![plugin(clippy)]
3
4 #![deny(warnings)]
5 #![allow(dead_code)]
6
7 struct Foo;
8
9 impl PartialEq for Foo {
10     fn eq(&self, _: &Foo) -> bool { true }
11     fn ne(&self, _: &Foo) -> bool { false }
12
13 }
14
15 fn main() {}