]> git.lizzy.rs Git - rust.git/blob - src/etc/test-float-parse/tiny-pow10.rs
Rollup merge of #68504 - tmiasko:check-pass, r=alexcrichton
[rust.git] / src / etc / test-float-parse / tiny-pow10.rs
1 mod _common;
2
3 use _common::validate;
4
5 fn main() {
6     for e in 301..327 {
7         for i in 0..100000 {
8             validate(&format!("{}e-{}", i, e));
9         }
10     }
11 }