]> git.proxmox.com Git - rustc.git/blob - src/etc/test-float-parse/src/bin/huge-pow10.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / src / etc / test-float-parse / src / bin / huge-pow10.rs
1 use test_float_parse::validate;
2
3 fn main() {
4 for e in 300..310 {
5 for i in 0..100000 {
6 validate(&format!("{}e{}", i, e));
7 }
8 }
9 }