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