summary refs log tree commit diff
path: root/src/etc/test-float-parse/u32-small.rs
blob: 3ae62425adf0bab5d0b49ebed0d79be28b491942 (plain)
1
2
3
4
5
6
7
8
9
mod _common;

use _common::validate;

fn main() {
    for i in 0..(1 << 19) {
        validate(&i.to_string());
    }
}