fn testInts(comptime Type: type) !void
fn testInts(comptime Type: type) !void { try expect((std.math.minInt(Type) < 0) == signbit(@as(Type, std.math.minInt(Type)))); try expect(!signbit(@as(Type, 0))); try expect(!signbit(@as(Type, std.math.maxInt(Type)))); }