mirror of
https://github.com/ziglang/zig.git
synced 2024-11-14 16:13:24 +00:00
11 lines
189 B
Zig
11 lines
189 B
Zig
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
|