mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 18:06:07 +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 => (),
|
|
_ => ()
|
|
}
|
|
}
|