1const std = @import("std"); 2const expect = std.testing.expect; 3 4test "integer truncation" { 5 const a: u16 = 0xabcd; 6 const b: u8 = @truncate(a); 7 try expect(b == 0xcd); 8} 9 10// test