mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
11 lines
234 B
Zig
11 lines
234 B
Zig
const std = @import("std");
|
|
const expect = std.testing.expect;
|
|
|
|
test "coercing large integer type to smaller one when value is comptime-known to fit" {
|
|
const x: u64 = 255;
|
|
const y: u8 = x;
|
|
try expect(y == 255);
|
|
}
|
|
|
|
// test
|