]> git.lizzy.rs Git - rust.git/blob - src/etc/test-float-parse/huge-pow10.rs
Rollup merge of #81127 - hanmertens:binary_heap_sift_down_perf, r=dtolnay
[rust.git] / src / etc / test-float-parse / huge-pow10.rs
1 mod _common;
2
3 use _common::validate;
4
5 fn main() {
6     for e in 300..310 {
7         for i in 0..100000 {
8             validate(&format!("{}e{}", i, e));
9         }
10     }
11 }