mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
241 B
Rust
13 lines
241 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);
|
|
}
|