summaryrefslogtreecommitdiffstats
path: root/src/etc/test-float-parse/src/bin/huge-pow10.rs
blob: 722a24ffcd8d995140081e671c053970bfb7b22e (plain)
1
2
3
4
5
6
7
8
9
use test_float_parse::validate;

fn main() {
    for e in 300..310 {
        for i in 0..100000 {
            validate(&format!("{}e{}", i, e));
        }
    }
}