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