mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
9 lines
558 B
Rust
9 lines
558 B
Rust
//@ build-pass
|
|
// ignore-tidy-linelength
|
|
// Regression test for #31109 and #31407.
|
|
|
|
pub fn main() {
|
|
let _: f64 = 0.3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333;
|
|
|
|
let _: f64 = 1234567890123456789012345678901234567890e-340;
|
|
}
|