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