2017-04-29 07:15:07 +00:00
|
|
|
// Matching against float literals should result in a linter error
|
|
|
|
|
|
|
|
#![feature(exclusive_range_pattern)]
|
|
|
|
#![allow(unused)]
|
|
|
|
#![forbid(illegal_floating_point_literal_pattern)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = 42.0;
|
|
|
|
match x {
|
2018-01-16 08:31:48 +00:00
|
|
|
5.0 => {}, //~ ERROR floating-point types cannot be used in patterns
|
2017-04-29 07:15:07 +00:00
|
|
|
//~| WARNING hard error
|
2018-01-16 08:31:48 +00:00
|
|
|
5.0f32 => {}, //~ ERROR floating-point types cannot be used in patterns
|
2017-04-29 07:15:07 +00:00
|
|
|
//~| WARNING hard error
|
2018-01-16 08:31:48 +00:00
|
|
|
-5.0 => {}, //~ ERROR floating-point types cannot be used in patterns
|
2017-04-29 07:15:07 +00:00
|
|
|
//~| WARNING hard error
|
2018-01-16 08:31:48 +00:00
|
|
|
1.0 .. 33.0 => {}, //~ ERROR floating-point types cannot be used in patterns
|
2017-04-29 07:15:07 +00:00
|
|
|
//~| WARNING hard error
|
2018-01-16 08:31:48 +00:00
|
|
|
//~| ERROR floating-point types cannot be used in patterns
|
2017-04-29 07:15:07 +00:00
|
|
|
//~| WARNING hard error
|
2018-05-29 02:42:11 +00:00
|
|
|
39.0 ..= 70.0 => {}, //~ ERROR floating-point types cannot be used in patterns
|
2020-01-08 17:02:10 +00:00
|
|
|
//~| ERROR floating-point types cannot be used in patterns
|
|
|
|
//~| WARNING hard error
|
|
|
|
//~| WARNING hard error
|
2019-12-11 09:04:34 +00:00
|
|
|
|
|
|
|
..71.0 => {}
|
|
|
|
//~^ ERROR floating-point types cannot be used in patterns
|
|
|
|
//~| WARNING this was previously accepted by the compiler
|
|
|
|
..=72.0 => {}
|
|
|
|
//~^ ERROR floating-point types cannot be used in patterns
|
|
|
|
//~| WARNING this was previously accepted by the compiler
|
|
|
|
71.0.. => {}
|
|
|
|
//~^ ERROR floating-point types cannot be used in patterns
|
|
|
|
//~| WARNING this was previously accepted by the compiler
|
2017-04-29 07:15:07 +00:00
|
|
|
_ => {},
|
|
|
|
};
|
|
|
|
let y = 5.0;
|
|
|
|
// Same for tuples
|
|
|
|
match (x, 5) {
|
2018-01-16 08:31:48 +00:00
|
|
|
(3.14, 1) => {}, //~ ERROR floating-point types cannot be used
|
2017-04-29 07:15:07 +00:00
|
|
|
//~| WARNING hard error
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
// Or structs
|
|
|
|
struct Foo { x: f32 };
|
|
|
|
match (Foo { x }) {
|
2018-01-16 08:31:48 +00:00
|
|
|
Foo { x: 2.0 } => {}, //~ ERROR floating-point types cannot be used
|
2017-04-29 07:15:07 +00:00
|
|
|
//~| WARNING hard error
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|