Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
11 lines
125 B
Rust
11 lines
125 B
Rust
//@ run-pass
|
|
|
|
pub fn main() {
|
|
const FOO: f64 = 10.0;
|
|
|
|
match 0.0 {
|
|
0.0 ..= FOO => (),
|
|
_ => ()
|
|
}
|
|
}
|