export c fn main() -> usize {
    var dst: [5]u8 = [0_u8, 0_u8, 0_u8, 0_u8, 0_u8]
    let span: MutSpan<u8> = dst
    return std.mem.len(span)
}
