fn test_one_divdi3(a: i64, b: i64, expected_q: i64) !void
fn test_one_divdi3(a: i64, b: i64, expected_q: i64) !void { const q: i64 = __divdi3(a, b); try testing.expect(q == expected_q); }