73c81495cd
Removing the space would lead to compilation errors.
7 lines
156 B
Rust
7 lines
156 B
Rust
fn float_range_tests() {
|
|
let _range = 3. / 2. ..4.;
|
|
let _range = 3.0 / 2. ..4.0;
|
|
let _range = 3.0 / 2.0..4.0;
|
|
let _range = 3. / 2.0..4.0;
|
|
}
|