mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
12 lines
158 B
Rust
12 lines
158 B
Rust
//@ run-pass
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
pub fn main() {
|
|
const FOO: f64 = 10.0;
|
|
|
|
match 0.0 {
|
|
0.0 ..= FOO => (),
|
|
_ => ()
|
|
}
|
|
}
|