]> git.lizzy.rs Git - rust.git/blob - src/etc/test-float-parse/u32-small.rs
Auto merge of #55519 - fhartwig:hashmap-index-example, r=Centril
[rust.git] / src / etc / test-float-parse / u32-small.rs
1 mod _common;
2
3 use _common::validate;
4
5 fn main() {
6     for i in 0..(1 << 19) {
7         validate(&i.to_string());
8     }
9 }