rust/tests/ui/should_assert_eq.rs

25 lines
475 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(clippy)]
2017-02-18 16:00:36 +08:00
#![allow(needless_take_by_value)]
#![deny(should_assert_eq)]
#[derive(PartialEq, Eq)]
struct NonDebug(i32);
#[derive(Debug, PartialEq, Eq)]
struct Debug(i32);
fn main() {
assert!(1 == 2);
assert!(Debug(1) == Debug(2));
assert!(NonDebug(1) == NonDebug(1)); // ok
2017-02-17 18:59:52 +08:00
test_generic(1, 2, 3, 4);
}
fn test_generic<T: std::fmt::Debug + Eq, U: Eq>(x: T, y: T, z: U, w: U) {
assert!(x == y);
assert!(z == w); // ok
}