mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
242 B
Rust
12 lines
242 B
Rust
//@ check-fail
|
|
|
|
#[derive(PartialEq, Eq)]
|
|
pub enum Value {
|
|
Boolean(Option<bool>),
|
|
Float(Option<f64>), //~ ERROR the trait bound `f64: Eq` is not satisfied
|
|
}
|
|
|
|
fn main() {
|
|
let a = Value::Float(Some(f64::NAN));
|
|
assert!(a == a);
|
|
}
|